diff options
author | Dave Love <fx@gnu.org> | 2000-05-21 11:07:47 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 2000-05-21 11:07:47 +0000 |
commit | 5bf244f1c628f7b339a3399872a15957dc3b0e5d (patch) | |
tree | 0aa83ab5dec1c8ec1e6565ba1161b2e3a3b55075 /lib-src/pop.c | |
parent | 752fb47256a3b381daa796d84d10550e0e957722 (diff) | |
download | emacs-5bf244f1c628f7b339a3399872a15957dc3b0e5d.tar.gz |
(ERROR_MAX): Increase to 160.
Diffstat (limited to 'lib-src/pop.c')
-rw-r--r-- | lib-src/pop.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib-src/pop.c b/lib-src/pop.c index c6b86e5a2dc..9af8805387f 100644 --- a/lib-src/pop.c +++ b/lib-src/pop.c @@ -138,7 +138,8 @@ static int gettermination _P((popserver)); static void pop_trash _P((popserver)); static char *find_crlf _P((char *, int)); -#define ERROR_MAX 80 /* a pretty arbitrary size */ +#define ERROR_MAX 160 /* a pretty arbitrary size, but needs + to be bigger than the one-time 80 */ #define POP_PORT 110 #define KPOP_PORT 1109 #define POP_SERVICE "pop3" /* we don't want the POP2 port! */ |