From bf66fc9b95b5539dd5aff3b2a9ab674d0102fcfb Mon Sep 17 00:00:00 2001 From: =?utf8?q?Wilfried=20G=C3=B6esgens?= Date: Thu, 15 Oct 2009 12:43:43 +0000 Subject: [PATCH] * remove debug statements --- webcit/serv_func.c | 3 --- 1 file changed, 3 deletions(-) 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); } -- 2.30.2