summaryrefslogtreecommitdiffstats
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)
return false;
}
- if ((memcmp(buf, "PSID", 4) != 0))
+ if (memcmp(buf, "PSID", 4) != 0 && memcmp(buf, "RSID", 4) != 0)
{
return false;
}