removed some debugs
[citadel.git] / libcitadel / lib / mime_parser.c
index 303bb54e0141a8d0240959cad1727f402536c47f..105d29a39c0297681a6550093ad9981c6a845e3e 100644 (file)
@@ -230,7 +230,6 @@ void mime_decode(char *partnum,
        if ((strcasecmp(encoding, "base64")) && (strcasecmp(encoding, "quoted-printable"))) {
                return;
        }
-       fprintf(stderr, "\033[33mSource encoded length: %d\033[0m\n", length);
 
        // Allocate a buffer for the decoded data.  The output buffer is slightly
        // larger than the input buffer; this assumes that the decoded data
@@ -247,7 +246,6 @@ void mime_decode(char *partnum,
        else if (!strcasecmp(encoding, "quoted-printable")) {
                bytes_decoded = CtdlDecodeQuotedPrintable(decoded, part_start, length);
        }
-       fprintf(stderr, "\033[33mTarget decoded length: %d\033[0m\n", bytes_decoded);
 
        if (bytes_decoded > 0) if (CallBack != NULL) {
                        char encoding_buf[SIZ];