summaryrefslogtreecommitdiff
path: root/session.c
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 /session.c
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.
Diffstat (limited to 'session.c')
-rw-r--r--session.c2
1 files changed, 1 insertions, 1 deletions
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);