diff options
author | Darren Tucker <dtucker@zip.com.au> | 2005-04-21 19:50:55 +1000 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2005-04-21 19:50:55 +1000 |
commit | 48554152b9f063f0f226f3eeb9f199be69975c2f (patch) | |
tree | 4eca6268e5e3a0dde1af2e2bc6106cc619bcefcf /session.c | |
parent | 8d158c9937e74cfa5c65187fca83f5ebc0dbef4c (diff) |
- (dtucker) [session.c] Bug #1024: Don't check pam_session_is_open if
UseLogin is set as PAM is not used to establish credentials in that
case. Found by Michael Selvesteen, ok djm@
Diffstat (limited to 'session.c')
-rw-r--r-- | session.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1477,7 +1477,8 @@ do_child(Session *s, const char *command) | |||
1477 | } | 1477 | } |
1478 | 1478 | ||
1479 | #ifdef USE_PAM | 1479 | #ifdef USE_PAM |
1480 | if (options.use_pam && !is_pam_session_open()) { | 1480 | if (options.use_pam && !options.use_login && !is_pam_session_open()) { |
1481 | debug3("PAM session not opened, exiting"); | ||
1481 | display_loginmsg(); | 1482 | display_loginmsg(); |
1482 | exit(254); | 1483 | exit(254); |
1483 | } | 1484 | } |