From 338b31a37567fb4e66d4918d3261ab3dbde05055 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Mon, 10 Feb 1997 09:33:43 +0000 Subject: Various minor bugfixes. svn path=/trunk/; revision=859 --- pop3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pop3.c') diff --git a/pop3.c b/pop3.c index 72232260..bf91bc92 100644 --- a/pop3.c +++ b/pop3.c @@ -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); } -- cgit v1.2.3