whitespace sync, cleanup

This commit is contained in:
Kevin Steves 2001-01-24 21:23:39 +00:00
parent f7ffab3ca8
commit 12aaa04e96
1 changed files with 5 additions and 6 deletions

11
auth1.c
View File

@ -271,7 +271,7 @@ do_authloop(Authctxt *authctxt)
authenticated = 1; authenticated = 1;
} }
#else /* !USE_PAM && !HAVE_OSF_SIA */ #else /* !USE_PAM && !HAVE_OSF_SIA */
/* Try authentication with the password. */ /* Try authentication with the password. */
authenticated = auth_password(pw, password); authenticated = auth_password(pw, password);
#endif /* USE_PAM */ #endif /* USE_PAM */
@ -293,7 +293,6 @@ do_authloop(Authctxt *authctxt)
} }
} }
break; break;
case SSH_CMSG_AUTH_TIS_RESPONSE: case SSH_CMSG_AUTH_TIS_RESPONSE:
debug("rcvd SSH_CMSG_AUTH_TIS_RESPONSE"); debug("rcvd SSH_CMSG_AUTH_TIS_RESPONSE");
if (options.challenge_reponse_authentication == 1) { if (options.challenge_reponse_authentication == 1) {
@ -346,7 +345,7 @@ do_authloop(Authctxt *authctxt)
if (authenticated) if (authenticated)
return; return;
if (authctxt->failures++ > AUTH_FAIL_MAX) { if (authctxt->failures++ > AUTH_FAIL_MAX) {
#ifdef WITH_AIXAUTHENTICATE #ifdef WITH_AIXAUTHENTICATE
loginfailed(user,get_canonical_hostname(),"ssh"); loginfailed(user,get_canonical_hostname(),"ssh");
#endif /* WITH_AIXAUTHENTICATE */ #endif /* WITH_AIXAUTHENTICATE */
@ -422,9 +421,9 @@ do_authentication()
#endif #endif
/* /*
* Loop until the user has been authenticated or the connection is * Loop until the user has been authenticated or the connection is
* closed, do_authloop() returns only if authentication is successful * closed, do_authloop() returns only if authentication is successful
*/ */
do_authloop(authctxt); do_authloop(authctxt);
/* The user has been authenticated and accepted. */ /* The user has been authenticated and accepted. */