diff options
author | Damien Miller <djm@mindrot.org> | 2003-05-18 16:50:02 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2003-05-18 16:50:02 +0200 |
commit | 5b5ca19ef058e069937e23ae0058c22bf62abd23 (patch) | |
tree | bb8f142bba3ade8a483a9a96cbacf071ac0df440 /auth-sia.c | |
parent | - (djm) KNF on md5crypt.c (diff) | |
download | openssh-5b5ca19ef058e069937e23ae0058c22bf62abd23.tar.xz openssh-5b5ca19ef058e069937e23ae0058c22bf62abd23.zip |
- (djm) KNF on auth-sia.[ch]
Diffstat (limited to 'auth-sia.c')
-rw-r--r-- | auth-sia.c | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/auth-sia.c b/auth-sia.c index 5c9b3f5de..05cf47c40 100644 --- a/auth-sia.c +++ b/auth-sia.c @@ -54,24 +54,25 @@ auth_sia_password(Authctxt *authctxt, char *pass) host = get_canonical_hostname(options.verify_reverse_mapping); - if (!authctxt->user || !pass || pass[0] == '\0') - return(0); + if (!authctxt->user || pass == NULL || pass[0] == '\0') + return (0); if (sia_ses_init(&ent, saved_argc, saved_argv, host, authctxt->user, NULL, 0, NULL) != SIASUCCESS) - return(0); + return (0); if ((ret = sia_ses_authent(NULL, pass, ent)) != SIASUCCESS) { - error("Couldn't authenticate %s from %s", authctxt->user, - host); + error("Couldn't authenticate %s from %s", + authctxt->user, host); if (ret & SIASTOP) sia_ses_release(&ent); - return(0); + + return (0); } sia_ses_release(&ent); - return(1); + return (1); } void @@ -82,8 +83,8 @@ session_setup_sia(struct passwd *pw, char *tty) host = get_canonical_hostname(options.verify_reverse_mapping); - if (sia_ses_init(&ent, saved_argc, saved_argv, host, pw->pw_name, tty, - 0, NULL) != SIASUCCESS) + if (sia_ses_init(&ent, saved_argc, saved_argv, host, pw->pw_name, + tty, 0, NULL) != SIASUCCESS) fatal("sia_ses_init failed"); if (sia_make_entity_pwd(pw, ent) != SIASUCCESS) { @@ -97,8 +98,8 @@ session_setup_sia(struct passwd *pw, char *tty) pw->pw_name, host); if (sia_ses_launch(sia_collect_trm, ent) != SIASUCCESS) - fatal("Couldn't launch session for %s from %s", pw->pw_name, - host); + fatal("Couldn't launch session for %s from %s", + pw->pw_name, host); sia_ses_release(&ent); |