From 7943d83e29f729c2b9f08918fa1f94cf56124f5a Mon Sep 17 00:00:00 2001 From: Xavier Roche Date: Fri, 17 May 2013 17:56:34 +0000 Subject: Fixed "Image in CSS not parsed" (http://code.google.com/p/httrack/issues/detail?id=2) --- src/htsparse.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/htsparse.c b/src/htsparse.c index 594616c..f31207b 100644 --- a/src/htsparse.c +++ b/src/htsparse.c @@ -1512,8 +1512,8 @@ int htsparse(htsmoduleStruct * str, htsmoduleStructExtended * stre) { } // Suspicious, abort. else if (a[i] == '"' || a[i] == '\'' - || a[i] != '\t' || a[i] != '\r' - || a[i] != '\n') { + || a[i] == '\t' || a[i] == '\r' + || a[i] == '\n') { a = NULL; break; } else if (a[i] != ' ') { -- cgit v1.2.3