summaryrefslogtreecommitdiff
path: root/auth1.c
diff options
context:
space:
mode:
authordjm <djm>2003-05-14 05:11:48 +0000
committerdjm <djm>2003-05-14 05:11:48 +0000
commita57327190a1c0fe3e456b7c3ca6d550bb2172056 (patch)
treebcbef19aa3a83f9b4ffd5556a9d917654b944dee /auth1.c
parentb084f3eb966ff2100a6c545d9d9c6ade5c27f0a8 (diff)
downloadopenssh-a57327190a1c0fe3e456b7c3ca6d550bb2172056.tar.gz
- (djm) Add new UsePAM configuration directive to allow runtime control
over usage of PAM. This allows non-root use of sshd when built with --with-pam
Diffstat (limited to 'auth1.c')
-rw-r--r--auth1.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/auth1.c b/auth1.c
index 7fe36315..6cb0b04b 100644
--- a/auth1.c
+++ b/auth1.c
@@ -342,11 +342,6 @@ do_authloop(Authctxt *authctxt)
!auth_root_allowed(get_authname(type)))
authenticated = 0;
#endif
-#ifdef USE_PAM
- if (!use_privsep && authenticated &&
- !do_pam_account(pw->pw_name, client_user))
- authenticated = 0;
-#endif
/* Log before sending the reply */
auth_log(authctxt, authenticated, get_authname(type), info);
@@ -413,7 +408,8 @@ do_authentication(void)
use_privsep ? " [net]" : "");
#ifdef USE_PAM
- PRIVSEP(start_pam(user));
+ if (options.use_pam)
+ PRIVSEP(start_pam(user));
#endif
/*