diff options
author | Niels Provos <provos@cvs.openbsd.org> | 2002-03-17 20:25:57 +0000 |
---|---|---|
committer | Niels Provos <provos@cvs.openbsd.org> | 2002-03-17 20:25:57 +0000 |
commit | b1c153652482f4a01274f1467de1a1b8f7afccfa (patch) | |
tree | 1bbad2d04c075bd910f23b98ba5b7084796e4b1b /usr.bin/ssh/auth2.c | |
parent | fd24b767bd3ea1411182aa064901d35024339207 (diff) |
getpwnamallow returns struct passwd * only if user valid; okay markus@
Diffstat (limited to 'usr.bin/ssh/auth2.c')
-rw-r--r-- | usr.bin/ssh/auth2.c | 6 |
1 files changed, 3 insertions, 3 deletions
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 <openssl/evp.h> @@ -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); |