changeset 243:d1600c7f479d trunk

[svn] - fix CDDB bug where exact matches are found, treat it like a 200 OK response.
author nenolod
date Mon, 13 Nov 2006 13:25:21 -0800
parents e5d78e44971f
children e6992f15513a
files ChangeLog src/cdaudio/cddb.c
diffstat 2 files changed, 9 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Mon Nov 13 06:27:29 2006 -0800
+++ b/ChangeLog	Mon Nov 13 13:25:21 2006 -0800
@@ -1,3 +1,11 @@
+2006-11-13 14:27:29 +0000  Yoshiki Yazawa <yaz@cc.rim.or.jp>
+  revision [502]
+  - suppress compile time waring.
+  
+  trunk/src/cue/cuesheet.c |    2 +-
+  1 file changed, 1 insertion(+), 1 deletion(-)
+
+
 2006-11-13 13:27:06 +0000  Tony Vroon <chainsaw@gentoo.org>
   revision [500]
   Crash avoidance for zeroed cue sheets. By TiCPU, submitted in #audacious.
--- a/src/cdaudio/cddb.c	Mon Nov 13 06:27:29 2006 -0800
+++ b/src/cdaudio/cddb.c	Mon Nov 13 13:25:21 2006 -0800
@@ -214,6 +214,7 @@
 
     switch (strtol(response[0], NULL, 10)) {
     case 200:
+    case 210:
         /* One exact match */
         for (i = 0; i < 4; i++) {
             if (response[i] == NULL) {