From 90069678a72555332715bf8e3dc9a78fb2ba3b1e Mon Sep 17 00:00:00 2001 From: Justin Maggard Date: Sun, 5 Apr 2009 08:00:56 +0000 Subject: [PATCH] * Update last change. --- tagutils/tagutils-misc.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/tagutils/tagutils-misc.c b/tagutils/tagutils-misc.c index d469268..dae6f84 100644 --- a/tagutils/tagutils-misc.c +++ b/tagutils/tagutils-misc.c @@ -178,11 +178,7 @@ vc_scan(struct song_metadata *psong, const char *comment, const size_t length) if(length > (sizeof(strbuf) - 1)) { - if(!strncasecmp(strbuf, "LYRICS=", 7)) - { - DPRINTF(E_DEBUG, L_SCANNER, "Ignoring embedded Vorbis lyrics [%s]\n", psong->path); - } - else + if( strncasecmp(comment, "LYRICS=", 7) != 0 ) { DPRINTF(E_WARN, L_SCANNER, "Vorbis %.*s too long [%s]\n", (index(comment, '=')-comment), comment, psong->path); }