diff options
author | J. Alexander Treuman <jat@spatialrift.net> | 2007-03-20 20:22:23 +0000 |
---|---|---|
committer | J. Alexander Treuman <jat@spatialrift.net> | 2007-03-20 20:22:23 +0000 |
commit | 28c2a1e433848092fd37b2244d431fa01d320e1a (patch) | |
tree | a5238a8fbdc9a7112600793c8cd19da67ad5b337 | |
parent | 2630b5a30fbca62f31d45346b782f9e00a88633d (diff) | |
download | mpd-28c2a1e433848092fd37b2244d431fa01d320e1a.tar.gz mpd-28c2a1e433848092fd37b2244d431fa01d320e1a.tar.xz mpd-28c2a1e433848092fd37b2244d431fa01d320e1a.zip |
Use "file" instead of SONG_INFO (literally "file: ") for
LOCATE_TAG_KEY_FILE. Specifying "file: " as an argument to
search/find/list wasn't the point of that patch...
git-svn-id: https://svn.musicpd.org/mpd/trunk@5670 09075e82-0dd4-0310-85a5-a0d7c8717e4f
-rw-r--r-- | src/locate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/locate.c b/src/locate.c index a2981ccc9..7c3bab899 100644 --- a/src/locate.c +++ b/src/locate.c @@ -20,8 +20,8 @@ #include "utils.h" -#define LOCATE_TAG_FILE_KEY SONG_FILE -#define LOCATE_TAG_FILE_KEY_OLD "filename" +#define LOCATE_TAG_FILE_KEY "file" +#define LOCATE_TAG_FILE_KEY_OLD "filename" #define LOCATE_TAG_ANY_KEY "any" int getLocateTagItemType(char *str) |