diff src/audacious/input.c @ 3166:56121fc7a4cb trunk

Automated merge with ssh://hg.atheme.org//hg/audacious
author William Pitcock <nenolod@atheme-project.org>
date Wed, 25 Jul 2007 15:46:06 -0500
parents 8775dfc57ead 5161ced1bce2
children b1964057a1a0 603577228518
line wrap: on
line diff
--- a/src/audacious/input.c	Wed Jul 25 15:46:00 2007 -0500
+++ b/src/audacious/input.c	Wed Jul 25 15:46:06 2007 -0500
@@ -370,7 +370,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);