diff options
author | ache <ache@FreeBSD.org> | 1998-06-28 21:44:59 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1998-06-28 21:44:59 +0000 |
commit | 585ef3ddf2b7aaaf1e2655821e1aa875de88c878 (patch) | |
tree | 3eae94fca0d8dd1574e1c2cf98d5f8eba7ef45cd /mail/popper | |
parent | 1d0209d8ffd2adbb985e198e6c1bb8fcc461a67a (diff) | |
download | FreeBSD-ports-585ef3ddf2b7aaaf1e2655821e1aa875de88c878.zip FreeBSD-ports-585ef3ddf2b7aaaf1e2655821e1aa875de88c878.tar.gz |
Increase allowed UIDL length to 70 chars per rfc1939
Diffstat (limited to 'mail/popper')
-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 8e3af1eb..6eb9523 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 > DIG_SIZE * 3) /* To account for the empty UIDL string */ +! if(l < DIG_SIZE || l > 70/*rfc1939*/) /* To account for the empty UIDL string */ { uidl_found--; /*roll over as though it hasn't seen anything*/ continue; |