diff options
Diffstat (limited to 'session.c')
-rw-r--r-- | session.c | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -1016,6 +1016,10 @@ do_child(const char *command, struct passwd * pw, const char *term, | |||
1016 | #endif /* WITH_IRIX_ARRAY */ | 1016 | #endif /* WITH_IRIX_ARRAY */ |
1017 | #endif /* WITH_IRIX_JOBS */ | 1017 | #endif /* WITH_IRIX_JOBS */ |
1018 | 1018 | ||
1019 | #ifdef USE_PAM | ||
1020 | do_pam_session(pw->pw_name, ttyname); | ||
1021 | do_pam_setcred(); | ||
1022 | #endif /* USE_PAM */ | ||
1019 | 1023 | ||
1020 | /* login(1) is only called if we execute the login shell */ | 1024 | /* login(1) is only called if we execute the login shell */ |
1021 | if (options.use_login && command != NULL) | 1025 | if (options.use_login && command != NULL) |
@@ -1129,11 +1133,6 @@ do_child(const char *command, struct passwd * pw, const char *term, | |||
1129 | shell = login_getcapstr(lc, "shell", (char *)shell, (char *)shell); | 1133 | shell = login_getcapstr(lc, "shell", (char *)shell, (char *)shell); |
1130 | #endif | 1134 | #endif |
1131 | 1135 | ||
1132 | #ifdef USE_PAM | ||
1133 | do_pam_session(pw->pw_name, ttyname); | ||
1134 | do_pam_setcred(); | ||
1135 | #endif /* USE_PAM */ | ||
1136 | |||
1137 | #ifdef AFS | 1136 | #ifdef AFS |
1138 | /* Try to get AFS tokens for the local cell. */ | 1137 | /* Try to get AFS tokens for the local cell. */ |
1139 | if (k_hasafs()) { | 1138 | if (k_hasafs()) { |