summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Steves <stevesk@pobox.com>2001-02-13 18:45:00 +0000
committerKevin Steves <stevesk@pobox.com>2001-02-13 18:45:00 +0000
commit7fafa5ccbe332d3c3faabd75b3354f8d149e6d09 (patch)
treeb5bff0879d2db8460324386c6f67e1a3c91136e2
parent92ddb7d6f0d6a1942e27f75883d29dc0ea99223f (diff)
- (stevesk) fix for SIA patch, misplaced session_setup_sia()
-rw-r--r--ChangeLog3
-rw-r--r--session.c2
2 files changed, 3 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 6d07d0105..65b7ed229 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -8,6 +8,7 @@
8 Mark Miller <markm@swoon.net> 8 Mark Miller <markm@swoon.net>
9 - (djm) Split out and improve OSF SIA auth code. Patch from Chris Adams 9 - (djm) Split out and improve OSF SIA auth code. Patch from Chris Adams
10 <cmadams@hiwaay.net> with a little modification and KNF. 10 <cmadams@hiwaay.net> with a little modification and KNF.
11 - (stevesk) fix for SIA patch, misplaced session_setup_sia()
11 12
1220010213 1320010213
13 - (djm) Only test -S potential EGD sockets if they exist and are readable. 14 - (djm) Only test -S potential EGD sockets if they exist and are readable.
@@ -3924,4 +3925,4 @@
3924 - Wrote replacements for strlcpy and mkdtemp 3925 - Wrote replacements for strlcpy and mkdtemp
3925 - Released 1.0pre1 3926 - Released 1.0pre1
3926 3927
3927$Id: ChangeLog,v 1.758 2001/02/13 14:25:23 djm Exp $ 3928$Id: ChangeLog,v 1.759 2001/02/13 18:45:00 stevesk Exp $
diff --git a/session.c b/session.c
index a9b4d87a3..a595a53cc 100644
--- a/session.c
+++ b/session.c
@@ -1046,8 +1046,8 @@ do_child(const char *command, struct passwd * pw, const char *term,
1046 switch, so we let login(1) to this for us. */ 1046 switch, so we let login(1) to this for us. */
1047 if (!options.use_login) { 1047 if (!options.use_login) {
1048#ifdef HAVE_OSF_SIA 1048#ifdef HAVE_OSF_SIA
1049#else /* HAVE_OSF_SIA */
1050 session_setup_sia(pw->pw_name, ttyname); 1049 session_setup_sia(pw->pw_name, ttyname);
1050#else /* HAVE_OSF_SIA */
1051#ifdef HAVE_CYGWIN 1051#ifdef HAVE_CYGWIN
1052 if (is_winnt) { 1052 if (is_winnt) {
1053#else 1053#else