From adf4060dec7add3f55687001fbf43e27decf9452 Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Mon, 25 Jul 1994 18:28:31 +0000 Subject: [PATCH] increased passwd len to 24 for c2 security --- tgetpass.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tgetpass.c b/tgetpass.c index 11d635c40..c04c420db 100644 --- a/tgetpass.c +++ b/tgetpass.c @@ -52,7 +52,11 @@ #endif /* HAVE_TERMIOS_H */ #ifndef _PASSWD_LEN +#ifdef HAVE_C2_SECURITY +#define _PASSWD_LEN 24 +#else #define _PASSWD_LEN 8 +#endif /* HAVE_C2_SECURITY */ #endif /* _PASSWD_LEN */