summaryrefslogtreecommitdiff
path: root/auth-sia.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2003-05-19 00:50:02 +1000
committerDamien Miller <djm@mindrot.org>2003-05-19 00:50:02 +1000
commit5b5ca19ef058e069937e23ae0058c22bf62abd23 (patch)
treebb8f142bba3ade8a483a9a96cbacf071ac0df440 /auth-sia.c
parente7fb10319246b876c1bd9a14c825799a59afa9ad (diff)
- (djm) KNF on auth-sia.[ch]
Diffstat (limited to 'auth-sia.c')
-rw-r--r--auth-sia.c23
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)
54 54
55 host = get_canonical_hostname(options.verify_reverse_mapping); 55 host = get_canonical_hostname(options.verify_reverse_mapping);
56 56
57 if (!authctxt->user || !pass || pass[0] == '\0') 57 if (!authctxt->user || pass == NULL || pass[0] == '\0')
58 return(0); 58 return (0);
59 59
60 if (sia_ses_init(&ent, saved_argc, saved_argv, host, authctxt->user, 60 if (sia_ses_init(&ent, saved_argc, saved_argv, host, authctxt->user,
61 NULL, 0, NULL) != SIASUCCESS) 61 NULL, 0, NULL) != SIASUCCESS)
62 return(0); 62 return (0);
63 63
64 if ((ret = sia_ses_authent(NULL, pass, ent)) != SIASUCCESS) { 64 if ((ret = sia_ses_authent(NULL, pass, ent)) != SIASUCCESS) {
65 error("Couldn't authenticate %s from %s", authctxt->user, 65 error("Couldn't authenticate %s from %s",
66 host); 66 authctxt->user, host);
67 if (ret & SIASTOP) 67 if (ret & SIASTOP)
68 sia_ses_release(&ent); 68 sia_ses_release(&ent);
69 return(0); 69
70 return (0);
70 } 71 }
71 72
72 sia_ses_release(&ent); 73 sia_ses_release(&ent);
73 74
74 return(1); 75 return (1);
75} 76}
76 77
77void 78void
@@ -82,8 +83,8 @@ session_setup_sia(struct passwd *pw, char *tty)
82 83
83 host = get_canonical_hostname(options.verify_reverse_mapping); 84 host = get_canonical_hostname(options.verify_reverse_mapping);
84 85
85 if (sia_ses_init(&ent, saved_argc, saved_argv, host, pw->pw_name, tty, 86 if (sia_ses_init(&ent, saved_argc, saved_argv, host, pw->pw_name,
86 0, NULL) != SIASUCCESS) 87 tty, 0, NULL) != SIASUCCESS)
87 fatal("sia_ses_init failed"); 88 fatal("sia_ses_init failed");
88 89
89 if (sia_make_entity_pwd(pw, ent) != SIASUCCESS) { 90 if (sia_make_entity_pwd(pw, ent) != SIASUCCESS) {
@@ -97,8 +98,8 @@ session_setup_sia(struct passwd *pw, char *tty)
97 pw->pw_name, host); 98 pw->pw_name, host);
98 99
99 if (sia_ses_launch(sia_collect_trm, ent) != SIASUCCESS) 100 if (sia_ses_launch(sia_collect_trm, ent) != SIASUCCESS)
100 fatal("Couldn't launch session for %s from %s", pw->pw_name, 101 fatal("Couldn't launch session for %s from %s",
101 host); 102 pw->pw_name, host);
102 103
103 sia_ses_release(&ent); 104 sia_ses_release(&ent);
104 105