summaryrefslogtreecommitdiff
path: root/usr.bin/ssh
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2002-05-17 14:27:56 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2002-05-17 14:27:56 +0000
commit5f45f619939c475aa336b9856ce3dcb98bf05f20 (patch)
tree0c9f1080c021ce5c4e56c71135ca8a5c7f172d80 /usr.bin/ssh
parentc6631e15371a31c203e3156c68071b9b6bd16b49 (diff)
Fix typo/thinko. Pass in as to auth_approval(), not NULL.
Closes PR 2659.
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r--usr.bin/ssh/auth.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/auth.c b/usr.bin/ssh/auth.c
index 37231e5626a..59e76bc3ced 100644
--- a/usr.bin/ssh/auth.c
+++ b/usr.bin/ssh/auth.c
@@ -23,7 +23,7 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: auth.c,v 1.42 2002/05/13 20:44:58 markus Exp $");
+RCSID("$OpenBSD: auth.c,v 1.43 2002/05/17 14:27:55 millert Exp $");
#include <libgen.h>
@@ -416,7 +416,7 @@ getpwnamallow(const char *user)
}
#ifdef BSD_AUTH
if ((as = auth_open()) == NULL || auth_setpwd(as, pw) != 0 ||
- auth_approval(NULL, lc, pw->pw_name, "ssh") <= 0) {
+ auth_approval(as, lc, pw->pw_name, "ssh") <= 0) {
debug("Approval failure for %s", user);
pw = NULL;
}