2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-29 13:28:10 +00:00

DCE & KERB support

This commit is contained in:
Todd C. Miller 1995-11-20 03:30:46 +00:00
parent ef7f00e9bd
commit 7dba81c21d

View File

@ -68,7 +68,11 @@ static char rcsid[] = "$Id$";
# ifdef HAVE_C2_SECURITY # ifdef HAVE_C2_SECURITY
# define _PASSWD_LEN 24 # define _PASSWD_LEN 24
# else # else
# define _PASSWD_LEN 8 # if defined(HAVE_DCE) || defined(HAVE_KERB4) || defined(HAVE_KERB5)
# define _PASSWD_LEN 256
# else
# define _PASSWD_LEN 8
# endif /* HAVE_DCE || HAVE_KERB[45] */
# endif /* HAVE_C2_SECURITY */ # endif /* HAVE_C2_SECURITY */
#endif /* _PASSWD_LEN */ #endif /* _PASSWD_LEN */