* we already checked for '=' before, remove.
authorWilfried Goesgens <dothebart@citadel.org>
Mon, 25 Oct 2010 20:00:43 +0000 (22:00 +0200)
committerWilfried Goesgens <dothebart@citadel.org>
Mon, 25 Oct 2010 20:00:43 +0000 (22:00 +0200)
libcitadel/lib/mime_parser.c

index 038851e2114b6c480691b471e3cb2220d1497312..a9089ccc730170ca051312ad147145e56c136570 100644 (file)
@@ -163,7 +163,7 @@ int CtdlDecodeQuotedPrintable(char *decoded, char *encoded, int sourcelen) {
                                if (*(encoded + pos) == '\n')
                                        pos++;
                        }
-                       else if (encoded[pos] == '=')
+                       else
                        {
                                ch = 0;
                                ch = _decode_hex(&encoded[pos]);