diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2001-10-02 07:56:40 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2001-10-02 07:56:40 +0000 |
commit | d1729183885a1019b59ffb047115f955e1f866f8 (patch) | |
tree | 62c33af43b9faf78682f7ca73c017c81c1e4b3ab /imap.c | |
parent | 0d51677f8a2f8427b268b16764395b1431721dab (diff) | |
download | fetchmail-d1729183885a1019b59ffb047115f955e1f866f8.tar.gz fetchmail-d1729183885a1019b59ffb047115f955e1f866f8.tar.bz2 fetchmail-d1729183885a1019b59ffb047115f955e1f866f8.zip |
HMH's changes.
svn path=/trunk/; revision=3531
Diffstat (limited to 'imap.c')
-rw-r--r-- | imap.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -635,8 +635,8 @@ static int imap_getsizes(int sock, int count, int *sizes) else if (sscanf(buf, "* %u FETCH (RFC822.SIZE %u)", &num, &size) == 2) { if (num > 0 && num <= count) sizes[num - 1] = size; - /* else, strict: protocol error, flexible: nothing - * I vote for flexible. */ + else + report(stderr, "Warning: ignoring bogus data for message sizes returned by the server.\n"); } } |