* change CtdlReadMessageBody to use StrBuf for concattenating the lines
[citadel.git] / citadel / modules / pop3client / serv_pop3client.c
index de70ea86522769df4de7ba21469c8a141755a6d1..e6ea572c96b29c4e56a999605e301156fdac4e26 100644 (file)
@@ -206,7 +206,7 @@ void pop3_do_fetching(char *roomname, char *pop3host, char *pop3user, char *pop3
                                goto bail;
 
                        /* If we get to this point, the message is on its way.  Read it. */
-                       body = CtdlReadMessageBody(".", config.c_maxmsglen, NULL, 1, sock);
+                       body = CtdlReadMessageBody(HKEY("."), config.c_maxmsglen, NULL, 1, sock);
                        if (body == NULL) goto bail;
        
                        CtdlLogPrintf(CTDL_DEBUG, "Converting message...\n");