Mercurial > audlegacy
changeset 3342:5d50b9604ddc trunk
Remove hardcoded test because uri_get_plugin should take care of it now
author | Christian Birchinger <joker@netswarm.net> |
---|---|
date | Sun, 12 Aug 2007 21:38:04 +0200 |
parents | 3da640de0e99 |
children | f5a413804217 |
files | src/audacious/input.c |
diffstat | 1 files changed, 1 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/audacious/input.c Sun Aug 12 21:12:54 2007 +0200 +++ b/src/audacious/input.c Sun Aug 12 21:38:04 2007 +0200 @@ -391,8 +391,7 @@ /* CD-Audio uses cdda:// dummy paths, no filedescriptor handling for it */ /* also cuesheet uses cue:// */ - if (!g_strncasecmp(filename, "cdda://", 7) || - !g_strncasecmp(filename, "cue://", 6)) { + if (!g_strncasecmp(filename, "cue://", 6)) { for (node = get_input_list(); node != NULL; node = g_list_next(node)) { ip = INPUT_PLUGIN(node->data);