diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-09-18 19:58:42 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-09-18 19:58:42 +0000 |
commit | e263587365ab0c400f27cd5885c74fd30471b16f (patch) | |
tree | 1c42ff68b6ce98c6acc2b4e9ce3f6dea5892af1a | |
parent | 7d8b3d857b90d76b78b74a58e30e710d41cc4676 (diff) | |
download | fetchmail-e263587365ab0c400f27cd5885c74fd30471b16f.tar.gz fetchmail-e263587365ab0c400f27cd5885c74fd30471b16f.tar.bz2 fetchmail-e263587365ab0c400f27cd5885c74fd30471b16f.zip |
Fix error in IMAP size retrieval.
svn path=/trunk/; revision=1371
-rw-r--r-- | imap.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -447,7 +447,7 @@ static int imap_getsizes(int sock, int count, int *sizes) char buf [POPBUFSIZE+1]; gen_send(sock, "FETCH 1:%d RFC822.SIZE", count); - while (SockRead(sock, buf, sizeof(buf))) + for (;;) { int num, size, ok; |