aboutsummaryrefslogtreecommitdiffstats
path: root/imap.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2001-08-01 07:20:53 +0000
committerEric S. Raymond <esr@thyrsus.com>2001-08-01 07:20:53 +0000
commit0bcc6704101d1ca85981245d9efae0fea9803b16 (patch)
tree87114d0a8b58b784f84480b7a89e7600aa8a9867 /imap.c
parentd33724740bb99f811af62490fb704d8578710197 (diff)
downloadfetchmail-0bcc6704101d1ca85981245d9efae0fea9803b16.tar.gz
fetchmail-0bcc6704101d1ca85981245d9efae0fea9803b16.tar.bz2
fetchmail-0bcc6704101d1ca85981245d9efae0fea9803b16.zip
Backed out bad BAD and NO handling.
svn path=/trunk/; revision=3434
Diffstat (limited to 'imap.c')
-rw-r--r--imap.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/imap.c b/imap.c
index 7ea1ef98..0adb7075 100644
--- a/imap.c
+++ b/imap.c
@@ -680,10 +680,6 @@ static int imap_fetch_headers(int sock, struct query *ctl,int number,int *lenp)
return(ok);
if (sscanf(buf+2, "%d FETCH (%*s {%d}", &num, lenp) == 2)
break;
- else if (sscanf(buf+2, "%d NO", &num) == 1)
- return(PS_ERROR);
- else if (sscanf(buf+2, "%d BAD", &num) == 1)
- return(PS_ERROR);
}
if (num != number)