aboutsummaryrefslogtreecommitdiffstats
path: root/getpass.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1996-11-06 21:05:44 +0000
committerEric S. Raymond <esr@thyrsus.com>1996-11-06 21:05:44 +0000
commit406fb74f8a1d5c1bf9bacf313d475fac8d7632a8 (patch)
tree5ffc08a8d67c6f148d7cf2c42c2268f7bc643f6a /getpass.c
parentdbf29188a27173d692e7770afaa3f36e27017742 (diff)
downloadfetchmail-406fb74f8a1d5c1bf9bacf313d475fac8d7632a8.tar.gz
fetchmail-406fb74f8a1d5c1bf9bacf313d475fac8d7632a8.tar.bz2
fetchmail-406fb74f8a1d5c1bf9bacf313d475fac8d7632a8.zip
Removed an unnecessary layer of indirection.
svn path=/trunk/; revision=495
Diffstat (limited to 'getpass.c')
-rw-r--r--getpass.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/getpass.c b/getpass.c
index e67ba670..d0606e45 100644
--- a/getpass.c
+++ b/getpass.c
@@ -17,10 +17,11 @@
#if defined(HAVE_UNISTD_H)
#include <unistd.h>
#endif
+#include "fetchmail.h"
extern int optind;
-#define INPUT_BUF_SIZE MAX_PASSWORD_LENGTH
+#define INPUT_BUF_SIZE PASSWORDLEN
#if defined(HAVE_TERMIOS_H) && defined(HAVE_TCSETATTR)
# include <termios.h>