From b1c153652482f4a01274f1467de1a1b8f7afccfa Mon Sep 17 00:00:00 2001 From: Niels Provos Date: Sun, 17 Mar 2002 20:25:57 +0000 Subject: getpwnamallow returns struct passwd * only if user valid; okay markus@ --- usr.bin/ssh/auth2.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'usr.bin/ssh/auth2.c') diff --git a/usr.bin/ssh/auth2.c b/usr.bin/ssh/auth2.c index 21f46a3fcf6..8a0c39c3454 100644 --- a/usr.bin/ssh/auth2.c +++ b/usr.bin/ssh/auth2.c @@ -23,7 +23,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: auth2.c,v 1.85 2002/02/24 19:14:59 markus Exp $"); +RCSID("$OpenBSD: auth2.c,v 1.86 2002/03/17 20:25:56 provos Exp $"); #include @@ -182,8 +182,8 @@ input_userauth_request(int type, u_int32_t seq, void *ctxt) if (authctxt->attempt++ == 0) { /* setup auth context */ struct passwd *pw = NULL; - pw = getpwnam(user); - if (pw && allowed_user(pw) && strcmp(service, "ssh-connection")==0) { + pw = getpwnamallow(user); + if (pw && strcmp(service, "ssh-connection")==0) { authctxt->pw = pwcopy(pw); authctxt->valid = 1; debug2("input_userauth_request: setting up authctxt for %s", user); -- cgit v1.2.3