* serv_getln now is a wrapper around existing functionality. a new temporary var...
[citadel.git] / webcit / notes.c
index bc5d78952ebcc4282dac57654f66dffac2e61b1d..4870ea0b2b26e46a4d5118f8d218f2ab4186befe 100644 (file)
@@ -46,12 +46,12 @@ struct vnote *vnote_new_from_msg(long msgnum,int unread)
        relevant_partnum[0] = '\0';
        serv_printf("MSG4 %ld", msgnum);        /* we need the mime headers */
        Buf = NewStrBuf();
-       StrBuf_ServGetlnBuffered(Buf);
+       StrBuf_ServGetln(Buf);
        if (GetServerStatus(Buf, NULL) != 1) {
                FreeStrBuf (&Buf);
                return NULL;
        }
-       while ((StrBuf_ServGetlnBuffered(Buf)>=0) && !Done) {
+       while ((StrBuf_ServGetln(Buf)>=0) && !Done) {
                if ( (StrLength(Buf)==3) && 
                     !strcmp(ChrPtr(Buf), "000")) {
                        Done = 1;