From c56b2c4469facd911b3ee621ab845c22cb55646f Mon Sep 17 00:00:00 2001 From: "Todd C. Miller" Date: Sat, 17 Jun 1995 22:14:10 +0000 Subject: [PATCH] no more special case for kerberos --- tgetpass.c | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/tgetpass.c b/tgetpass.c index 991f1431f..a515af79e 100644 --- a/tgetpass.c +++ b/tgetpass.c @@ -59,18 +59,13 @@ #include "pathnames.h" #include "compat.h" -#ifdef HAVE_KERB4 -#undef _PASSWD_LEN -#define _PASSWD_LEN BUFSIZ -#else #ifndef _PASSWD_LEN -#ifdef HAVE_C2_SECURITY -#define _PASSWD_LEN 24 -#else -#define _PASSWD_LEN 8 -#endif /* HAVE_C2_SECURITY */ +# ifdef HAVE_C2_SECURITY +# define _PASSWD_LEN 24 +# else +# define _PASSWD_LEN 8 +# endif /* HAVE_C2_SECURITY */ #endif /* _PASSWD_LEN */ -#endif /* HAVE_KERB4 */ /****************************************************************** -- 2.40.0