From: Todd C. Miller Date: Tue, 6 Jun 1995 03:43:39 +0000 (+0000) Subject: added KERBEROS support (long passwords) X-Git-Tag: SUDO_1_4_0~391 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bb62e6b4cbfa1d6a899291ee96a35ce9f5be1e25;p=sudo added KERBEROS support (long passwords) --- diff --git a/tgetpass.c b/tgetpass.c index 3a1e1365a..741ecd709 100644 --- a/tgetpass.c +++ b/tgetpass.c @@ -59,6 +59,10 @@ #include "pathnames.h" #include "compat.h" +#ifdef HAVE_KERBEROS +#undef _PASSWD_LEN +#define _PASSWD_LEN 128 +#else #ifndef _PASSWD_LEN #ifdef HAVE_C2_SECURITY #define _PASSWD_LEN 24 @@ -66,6 +70,7 @@ #define _PASSWD_LEN 8 #endif /* HAVE_C2_SECURITY */ #endif /* _PASSWD_LEN */ +#endif /* HAVE_KERBEROS */ /******************************************************************