summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Steves <stevesk@pobox.com>2002-03-24 23:19:54 +0000
committerKevin Steves <stevesk@pobox.com>2002-03-24 23:19:54 +0000
commitb4799a31a53bcff9d12caa2e366b98c02ddb362d (patch)
tree8d46f6e06ba25b0cf2d97d366dfe433f64efd809
parent4408c2098f41730971dbb723c57bc659443d2c0c (diff)
- (stevesk) [session.c] disable LOGIN_NEEDS_TERM until we are sure
it can be removed. only used on solaris. will no longer compile with privsep shuffling.
-rw-r--r--ChangeLog7
-rw-r--r--session.c2
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index a20ad29b5..d48d71819 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
120020324
2 - (stevesk) [session.c] disable LOGIN_NEEDS_TERM until we are sure
3 it can be removed. only used on solaris. will no longer compile with
4 privsep shuffling.
5
120020322 620020322
2 - (stevesk) HAVE_ACCRIGHTS_IN_MSGHDR configure support 7 - (stevesk) HAVE_ACCRIGHTS_IN_MSGHDR configure support
3 - (stevesk) [monitor.c monitor_wrap.c] #ifdef HAVE_PW_CLASS_IN_PASSWD 8 - (stevesk) [monitor.c monitor_wrap.c] #ifdef HAVE_PW_CLASS_IN_PASSWD
@@ -8006,4 +8011,4 @@
8006 - Wrote replacements for strlcpy and mkdtemp 8011 - Wrote replacements for strlcpy and mkdtemp
8007 - Released 1.0pre1 8012 - Released 1.0pre1
8008 8013
8009$Id: ChangeLog,v 1.1975 2002/03/23 02:20:07 stevesk Exp $ 8014$Id: ChangeLog,v 1.1976 2002/03/24 23:19:55 stevesk Exp $
diff --git a/session.c b/session.c
index bd80723b1..d8ee69ad1 100644
--- a/session.c
+++ b/session.c
@@ -1120,7 +1120,7 @@ launch_login(struct passwd *pw, const char *hostname)
1120 /* Launch login(1). */ 1120 /* Launch login(1). */
1121 1121
1122 execl("/usr/bin/login", "login", "-h", hostname, 1122 execl("/usr/bin/login", "login", "-h", hostname,
1123#ifdef LOGIN_NEEDS_TERM 1123#ifdef xxxLOGIN_NEEDS_TERM
1124 (s->term ? s->term : "unknown"), 1124 (s->term ? s->term : "unknown"),
1125#endif /* LOGIN_NEEDS_TERM */ 1125#endif /* LOGIN_NEEDS_TERM */
1126 "-p", "-f", "--", pw->pw_name, (char *)NULL); 1126 "-p", "-f", "--", pw->pw_name, (char *)NULL);