aboutsummaryrefslogtreecommitdiffstats
path: root/imap.c
diff options
context:
space:
mode:
Diffstat (limited to 'imap.c')
-rw-r--r--imap.c8
1 files changed, 4 insertions, 4 deletions
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);