Rename StrBufRFC2047encodeMessage() to StrBufQuotedPrintableEncode()
[citadel.git] / webcit / serv_func.c
index 88af2024f5c8d6dcc6d4324c2f6af25b0ec01c22..02e68794694fd4a8ade1ca4c1286b00947f3438f 100644 (file)
@@ -380,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);
 }