]> code.citadel.org Git - citadel.git/blobdiff - webcit/serv_func.c
Rename StrBufRFC2047encodeMessage() to StrBufQuotedPrintableEncode()
[citadel.git] / webcit / serv_func.c
index 7f26f7222051106de2811119df988fe02433d974..02e68794694fd4a8ade1ca4c1286b00947f3438f 100644 (file)
@@ -161,9 +161,6 @@ ServInfo *get_serv_info(StrBuf *browser_host, StrBuf *user_agent) {
 int GetConnected (void) {
        StrBuf *Buf;
 
-       TRACE;
-       syslog(LOG_DEBUG, "GetConnected() has been called, and ctdl_dir is \"%s\"", ctdl_dir);
-
        if (WC->ReadBuf == NULL) {
                WC->ReadBuf = NewStrBufPlain(NULL, SIZ * 4);
        }
@@ -383,7 +380,7 @@ void text_to_server(char *ptr) {
 void text_to_server_qp(const StrBuf *SendMeEncoded) {
        StrBuf *ServBuf;
 
-       ServBuf = StrBufRFC2047encodeMessage(SendMeEncoded);
+       ServBuf = StrBufQuotedPrintableEncode(SendMeEncoded);
        serv_putbuf(ServBuf);
        FreeStrBuf(&ServBuf);
 }