diff options
author | Andrey A. Chernov <ache@FreeBSD.org> | 1998-06-28 21:56:00 +0000 |
---|---|---|
committer | Andrey A. Chernov <ache@FreeBSD.org> | 1998-06-28 21:56:00 +0000 |
commit | 0a8957adfe51b7b2f1d5d3e88de5ca61e65f40d9 (patch) | |
tree | 48fee04e552738328b1c90b3fd8e2e779a82780c /mail | |
parent | Increase allowed UIDL length to 70 chars per rfc1939 (diff) |
oops, forget to add 1 for newline for max UIDL check
Notes
Notes:
svn path=/head/; revision=11591
Diffstat (limited to 'mail')
-rw-r--r-- | mail/popper/files/patch-ai | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/popper/files/patch-ai b/mail/popper/files/patch-ai index 6eb95235297c..86c7c92c4e70 100644 --- a/mail/popper/files/patch-ai +++ b/mail/popper/files/patch-ai @@ -25,7 +25,7 @@ cp = &buffer[7]; while (*cp && (*cp == ' ' || *cp == '\t')) cp++; ! l = strlen(cp); -! if(l < DIG_SIZE || l > 70/*rfc1939*/) /* To account for the empty UIDL string */ +! if(l < DIG_SIZE || l > 70/*rfc1939*/+1) /* To account for the empty UIDL string */ { uidl_found--; /*roll over as though it hasn't seen anything*/ continue; |