From: Wilfried Göesgens Date: Thu, 15 Oct 2009 12:43:43 +0000 (+0000) Subject: * remove debug statements X-Git-Tag: v7.86~748 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;h=bf66fc9b95b5539dd5aff3b2a9ab674d0102fcfb;p=citadel.git * remove debug statements --- diff --git a/webcit/serv_func.c b/webcit/serv_func.c index 4ee90fdb8..165b192a2 100644 --- a/webcit/serv_func.c +++ b/webcit/serv_func.c @@ -741,7 +741,6 @@ void tmplput_mesg(StrBuf *Target, WCTemplputParams *TP) void RegisterEmbeddableMimeType(const char *MimeType, long MTLen, int Priority) { StrBuf *MT; - printf("%s - %ld\n", MimeType, Priority); MT = NewStrBufPlain(MimeType, MTLen); Put(EmbeddableMimes, IKEY(Priority), MT, HFreeStrBuf); } @@ -756,14 +755,12 @@ void CreateMimeStr(void) it = GetNewHashPos(EmbeddableMimes, 0); while (GetNextHashPos(EmbeddableMimes, it, &len, &Key, &vMime) && (vMime != NULL)) { - printf("%s - \n", ChrPtr((StrBuf*) vMime)); if (StrLength(EmbeddableMimeStrs) > 0) StrBufAppendBufPlain(EmbeddableMimeStrs, HKEY("|"), 0); else StrBufAppendBufPlain(EmbeddableMimeStrs, HKEY("MSGP "), 0); StrBufAppendBuf(EmbeddableMimeStrs, (StrBuf*) vMime, 0); } - printf("------%ld-------------%s------%s------------\n", len, ChrPtr(EmbeddableMimeStrs), ChrPtr((StrBuf*) vMime)); DeleteHashPos(&it); }