summaryrefslogtreecommitdiff
path: root/lib/rbcodec/metadata/sid.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rbcodec/metadata/sid.c')
-rw-r--r--lib/rbcodec/metadata/sid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rbcodec/metadata/sid.c b/lib/rbcodec/metadata/sid.c
index 3a276b3cde..951ed9b62f 100644
--- a/lib/rbcodec/metadata/sid.c
+++ b/lib/rbcodec/metadata/sid.c
@@ -45,7 +45,7 @@ bool get_sid_metadata(int fd, struct mp3entry* id3)
45 return false; 45 return false;
46 } 46 }
47 47
48 if ((memcmp(buf, "PSID", 4) != 0)) 48 if (memcmp(buf, "PSID", 4) != 0 && memcmp(buf, "RSID", 4) != 0)
49 { 49 {
50 return false; 50 return false;
51 } 51 }