diff options
author | Eric Wong <normalperson@yhbt.net> | 2006-03-26 17:43:52 +0000 |
---|---|---|
committer | Eric Wong <normalperson@yhbt.net> | 2006-03-26 17:43:52 +0000 |
commit | 10afe91c64ac147a14801147c207067bade20a5c (patch) | |
tree | 04dd157632588605e7cae08abf3dc339f2802f68 /src/command.c | |
parent | a2a2364b452e1c0b4c85e8ef9bf0852bba1c4aea (diff) | |
download | mpd-10afe91c64ac147a14801147c207067bade20a5c.tar.gz mpd-10afe91c64ac147a14801147c207067bade20a5c.tar.xz mpd-10afe91c64ac147a14801147c207067bade20a5c.zip |
src/command.c: protocol commands are all lowercase, _always_
git-svn-id: https://svn.musicpd.org/mpd/trunk@3950 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to 'src/command.c')
-rw-r--r-- | src/command.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/command.c b/src/command.c index 8596e3791..54703ca28 100644 --- a/src/command.c +++ b/src/command.c @@ -53,8 +53,8 @@ #define COMMAND_CLEAR "clear" #define COMMAND_SAVE "save" #define COMMAND_LOAD "load" -#define COMMAND_LISTPLAYLIST "listPlaylist" -#define COMMAND_LISTPLAYLISTINFO "listPlaylistInfo" +#define COMMAND_LISTPLAYLIST "listplaylist" +#define COMMAND_LISTPLAYLISTINFO "listplaylistinfo" #define COMMAND_LSINFO "lsinfo" #define COMMAND_RM "rm" #define COMMAND_PLAYLISTINFO "playlistinfo" |