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 /getpass.c | |
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 'getpass.c')
-rw-r--r-- | getpass.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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> |