diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-02-10 09:33:43 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-02-10 09:33:43 +0000 |
commit | 338b31a37567fb4e66d4918d3261ab3dbde05055 (patch) | |
tree | 738dbc8fc37f1ff03527ab5c29deafef6830974d /pop3.c | |
parent | 0d7fbc620d1f848846f5523486fe1456fac20d60 (diff) | |
download | fetchmail-338b31a37567fb4e66d4918d3261ab3dbde05055.tar.gz fetchmail-338b31a37567fb4e66d4918d3261ab3dbde05055.tar.bz2 fetchmail-338b31a37567fb4e66d4918d3261ab3dbde05055.zip |
Various minor bugfixes.
svn path=/trunk/; revision=859
Diffstat (limited to 'pop3.c')
-rw-r--r-- | pop3.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -243,7 +243,7 @@ static int pop3_fetch(FILE *sockfp, struct query *ctl, int number, int *lenp) *lenp = 0; else { - while (--cp > buf && isdigit(*cp)) + while (--cp >= buf && isdigit(*cp)) continue; *lenp = atoi(++cp); } |