summaryrefslogtreecommitdiff
path: root/session.c
diff options
context:
space:
mode:
Diffstat (limited to 'session.c')
-rw-r--r--session.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/session.c b/session.c
index e862c6504..de8127f79 100644
--- a/session.c
+++ b/session.c
@@ -1017,10 +1017,6 @@ do_child(const char *command, struct passwd * pw, const char *term,
1017#endif /* WITH_IRIX_ARRAY */ 1017#endif /* WITH_IRIX_ARRAY */
1018#endif /* WITH_IRIX_JOBS */ 1018#endif /* WITH_IRIX_JOBS */
1019 1019
1020#ifdef USE_PAM
1021 do_pam_session(pw->pw_name, ttyname);
1022 do_pam_setcred();
1023#endif /* USE_PAM */
1024 1020
1025 /* login(1) is only called if we execute the login shell */ 1021 /* login(1) is only called if we execute the login shell */
1026 if (options.use_login && command != NULL) 1022 if (options.use_login && command != NULL)
@@ -1147,6 +1143,11 @@ do_child(const char *command, struct passwd * pw, const char *term,
1147 shell = login_getcapstr(lc, "shell", (char *)shell, (char *)shell); 1143 shell = login_getcapstr(lc, "shell", (char *)shell, (char *)shell);
1148#endif 1144#endif
1149 1145
1146#ifdef USE_PAM
1147 do_pam_session(pw->pw_name, ttyname);
1148 do_pam_setcred();
1149#endif /* USE_PAM */
1150
1150#ifdef AFS 1151#ifdef AFS
1151 /* Try to get AFS tokens for the local cell. */ 1152 /* Try to get AFS tokens for the local cell. */
1152 if (k_hasafs()) { 1153 if (k_hasafs()) {