From b85d71b67a2743272f46c85bf479b1051171193d Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Tue, 17 Dec 1996 20:53:10 +0000 Subject: SockGets is gone. svn path=/trunk/; revision=650 --- imap.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'imap.c') diff --git a/imap.c b/imap.c index 7887453c..0b7dcd2f 100644 --- a/imap.c +++ b/imap.c @@ -25,7 +25,7 @@ int imap_ok (FILE *sockfp, char *argbuf) seen = 0; do { - if (SockGets(buf, sizeof(buf), sockfp) < 0) + if (!fgets(buf, sizeof(buf), sockfp)) return(PS_SOCKET); if (outlevel == O_VERBOSE) @@ -118,7 +118,7 @@ static int imap_getsizes(FILE *sockfp, int count, int *sizes) char buf [POPBUFSIZE+1]; gen_send(sockfp, "FETCH 1:%d RFC822.SIZE", count); - while (SockGets(buf, sizeof(buf), sockfp) >= 0) + while (fgets(buf, sizeof(buf), sockfp)) { int num, size; @@ -165,7 +165,7 @@ static int imap_fetch(FILE *sockfp, int number, int *lenp) /* looking for FETCH response */ do { - if (SockGets(buf, sizeof(buf), sockfp) < 0) + if (!fgets(buf, sizeof(buf), sockfp)) return(PS_SOCKET); } while (sscanf(buf+2, "%d FETCH (RFC822 {%d}", &num, lenp) != 2); @@ -181,7 +181,7 @@ static int imap_trail(FILE *sockfp, struct query *ctl, int number) { char buf [POPBUFSIZE+1]; - if (SockGets(buf, sizeof(buf), sockfp) < 0) + if (!fgets(buf, sizeof(buf), sockfp)) return(PS_SOCKET); else return(0); -- cgit v1.2.3