- (djm) KNF on auth-sia.[ch]

This commit is contained in:
Damien Miller 2003-05-19 00:50:02 +10:00
parent e7fb103192
commit 5b5ca19ef0
3 changed files with 17 additions and 15 deletions

View File

@ -18,7 +18,8 @@
- (djm) Tidy and trim TODO - (djm) Tidy and trim TODO
- (djm) Sync openbsd-compat/ with OpenBSD CVS head - (djm) Sync openbsd-compat/ with OpenBSD CVS head
- (djm) Big KNF on openbsd-compat/ - (djm) Big KNF on openbsd-compat/
- (djm) KNF on md5crypt.c - (djm) KNF on md5crypt.[ch]
- (djm) KNF on auth-sia.[ch]
20030517 20030517
- (bal) strcat -> strlcat on openbsd-compat/realpath.c (rev 1.8 OpenBSD) - (bal) strcat -> strlcat on openbsd-compat/realpath.c (rev 1.8 OpenBSD)
@ -1574,4 +1575,4 @@
save auth method before monitor_reset_key_state(); bugzilla bug #284; save auth method before monitor_reset_key_state(); bugzilla bug #284;
ok provos@ ok provos@
$Id: ChangeLog,v 1.2740 2003/05/18 14:46:46 djm Exp $ $Id: ChangeLog,v 1.2741 2003/05/18 14:50:02 djm Exp $

View File

@ -54,24 +54,25 @@ auth_sia_password(Authctxt *authctxt, char *pass)
host = get_canonical_hostname(options.verify_reverse_mapping); host = get_canonical_hostname(options.verify_reverse_mapping);
if (!authctxt->user || !pass || pass[0] == '\0') if (!authctxt->user || pass == NULL || pass[0] == '\0')
return(0); return (0);
if (sia_ses_init(&ent, saved_argc, saved_argv, host, authctxt->user, if (sia_ses_init(&ent, saved_argc, saved_argv, host, authctxt->user,
NULL, 0, NULL) != SIASUCCESS) NULL, 0, NULL) != SIASUCCESS)
return(0); return (0);
if ((ret = sia_ses_authent(NULL, pass, ent)) != SIASUCCESS) { if ((ret = sia_ses_authent(NULL, pass, ent)) != SIASUCCESS) {
error("Couldn't authenticate %s from %s", authctxt->user, error("Couldn't authenticate %s from %s",
host); authctxt->user, host);
if (ret & SIASTOP) if (ret & SIASTOP)
sia_ses_release(&ent); sia_ses_release(&ent);
return(0);
return (0);
} }
sia_ses_release(&ent); sia_ses_release(&ent);
return(1); return (1);
} }
void void
@ -82,8 +83,8 @@ session_setup_sia(struct passwd *pw, char *tty)
host = get_canonical_hostname(options.verify_reverse_mapping); host = get_canonical_hostname(options.verify_reverse_mapping);
if (sia_ses_init(&ent, saved_argc, saved_argv, host, pw->pw_name, tty, if (sia_ses_init(&ent, saved_argc, saved_argv, host, pw->pw_name,
0, NULL) != SIASUCCESS) tty, 0, NULL) != SIASUCCESS)
fatal("sia_ses_init failed"); fatal("sia_ses_init failed");
if (sia_make_entity_pwd(pw, ent) != SIASUCCESS) { if (sia_make_entity_pwd(pw, ent) != SIASUCCESS) {
@ -97,8 +98,8 @@ session_setup_sia(struct passwd *pw, char *tty)
pw->pw_name, host); pw->pw_name, host);
if (sia_ses_launch(sia_collect_trm, ent) != SIASUCCESS) if (sia_ses_launch(sia_collect_trm, ent) != SIASUCCESS)
fatal("Couldn't launch session for %s from %s", pw->pw_name, fatal("Couldn't launch session for %s from %s",
host); pw->pw_name, host);
sia_ses_release(&ent); sia_ses_release(&ent);

View File

@ -26,7 +26,7 @@
#ifdef HAVE_OSF_SIA #ifdef HAVE_OSF_SIA
int auth_sia_password(Authctxt *authctxt, char *pass); int auth_sia_password(Authctxt *, char *);
void session_setup_sia(struct passwd *pw, char *tty); void session_setup_sia(struct passwd *, char *);
#endif /* HAVE_OSF_SIA */ #endif /* HAVE_OSF_SIA */