diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-11-06 21:05:44 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-11-06 21:05:44 +0000 |
commit | 406fb74f8a1d5c1bf9bacf313d475fac8d7632a8 (patch) | |
tree | 5ffc08a8d67c6f148d7cf2c42c2268f7bc643f6a /fetchmail.h | |
parent | dbf29188a27173d692e7770afaa3f36e27017742 (diff) | |
download | fetchmail-406fb74f8a1d5c1bf9bacf313d475fac8d7632a8.tar.gz fetchmail-406fb74f8a1d5c1bf9bacf313d475fac8d7632a8.tar.bz2 fetchmail-406fb74f8a1d5c1bf9bacf313d475fac8d7632a8.zip |
Removed an unnecessary layer of indirection.
svn path=/trunk/; revision=495
Diffstat (limited to 'fetchmail.h')
-rw-r--r-- | fetchmail.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fetchmail.h b/fetchmail.h index 9bf6d105..3b0973fc 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -20,7 +20,7 @@ #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 +#define PASSWORDLEN 64 /* max password length */ #define FOLDERLEN 256 /* max folder name length */ #define DIGESTLEN 33 /* length of MD5 digest */ #define MDALEN 256 /* length of delivery agent command */ |