From fa83754c4ebe7a16cd875372abaf02a632e8dd40 Mon Sep 17 00:00:00 2001 From: Mark Murray Date: Fri, 11 May 2001 09:36:17 +0000 Subject: [PATCH] Fix make world in the kerberosIV case. --- crypto/openssh/auth1.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/crypto/openssh/auth1.c b/crypto/openssh/auth1.c index db8a4636d5f2..0e494eb3de4d 100644 --- a/crypto/openssh/auth1.c +++ b/crypto/openssh/auth1.c @@ -118,7 +118,11 @@ do_authloop(Authctxt *authctxt) /* If the user has no password, accept authentication immediately. */ if (options.password_authentication && #if defined(KRB4) || defined(KRB5) - (!options.kerberos_authentication || options.kerberos_or_local_passwd) && + (!options.kerberos_authentication +#if defined(KRB4) + || options.krb4_or_local_passwd +#endif + ) && #endif #ifdef USE_PAM auth_pam_password(authctxt, "")