Just specify mimeType as NULL in mpc's InputPlugin struct.

git-svn-id: https://svn.musicpd.org/mpd/trunk@6225 09075e82-0dd4-0310-85a5-a0d7c8717e4f
This commit is contained in:
J. Alexander Treuman 2007-05-22 23:34:26 +00:00
parent 407497c40a
commit a70ecdc00c

View File

@ -338,7 +338,6 @@ static MpdTag *mpcTagDup(char *file)
}
static char *mpcSuffixes[] = { "mpc", NULL };
static char *mpcMimeTypes[] = { NULL };
InputPlugin mpcPlugin = {
"mpc",
@ -350,7 +349,7 @@ InputPlugin mpcPlugin = {
mpcTagDup,
INPUT_PLUGIN_STREAM_URL | INPUT_PLUGIN_STREAM_FILE,
mpcSuffixes,
mpcMimeTypes
NULL
};
#else