# HG changeset patch # User mf0102 <0102@gmx.at> # Date 1185395993 -7200 # Node ID 3398dae5fd3c75954c157c18574dceab67117f4b # Parent d087e747efb7d14be21c093a0c5e9956ec66fb01# Parent 5161ced1bce250dafa4fa8902e16e4b092699f1c Automated merge with ssh://mf0102@hg.atheme-project.org//hg/audacious diff -r d087e747efb7 -r 3398dae5fd3c src/audacious/input.c --- a/src/audacious/input.c Wed Jul 25 22:37:56 2007 +0200 +++ b/src/audacious/input.c Wed Jul 25 22:39:53 2007 +0200 @@ -372,7 +372,9 @@ *tmp = '\0'; /* CD-Audio uses cdda:// dummy paths, no filedescriptor handling for it */ - if (!g_strncasecmp(filename, "cdda://", 7)) { + /* also cuesheet uses cue:// */ + if (!g_strncasecmp(filename, "cdda://", 7) || + !g_strncasecmp(filename, "cue://", 6)) { for (node = get_input_list(); node != NULL; node = g_list_next(node)) { ip = INPUT_PLUGIN(node->data);