diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-07-03 14:25:31 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-07-03 14:25:31 +0000 |
commit | c2398336ad81e3d7e9ff6ce76528bcc934367e40 (patch) | |
tree | 9546b6641f1925e0e2df70d886f5c6dece44bcbf | |
parent | 53e706a1de359a8286d753dfe15114253195134c (diff) | |
download | fetchmail-c2398336ad81e3d7e9ff6ce76528bcc934367e40.tar.gz fetchmail-c2398336ad81e3d7e9ff6ce76528bcc934367e40.tar.bz2 fetchmail-c2398336ad81e3d7e9ff6ce76528bcc934367e40.zip |
Avoid buffer spam.
svn path=/trunk/; revision=37
-rw-r--r-- | fetchmail.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fetchmail.h b/fetchmail.h index 76deb5fd..b9b1cdcf 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -15,7 +15,7 @@ /* definitions for buffer sizes -- somewhat arbitrary */ #define POPBUFSIZE 512 /* per RFC 937 */ -#define MSGBUFSIZE 1024 /* size of message read buffer */ +#define MSGBUFSIZE 2048 /* size of message read buffer */ #define HOSTLEN 128 /* max hostname length */ #define USERNAMELEN 32 /* max user-length */ #define PASSWORDLEN MAX_PASSWORD_LENGTH |