- (bal) use 'LOGIN_PROGRAM' not '/usr/bin/login' in session.c patch by

Bertrand.Velle@apogee-com.fr
This commit is contained in:
Ben Lindstrom 2002-06-07 14:49:56 +00:00
parent 3545352dc4
commit 378a417389
2 changed files with 4 additions and 2 deletions

View File

@ -1,5 +1,7 @@
20020607
- (bal) Missed __progname in ssh-keysign.c patch by dtucker@zip.com.au
- (bal) use 'LOGIN_PROGRAM' not '/usr/bin/login' in session.c patch by
Bertrand.Velle@apogee-com.fr
20020606
- (bal) OpenBSD CVS Sync
@ -825,4 +827,4 @@
- (stevesk) entropy.c: typo in debug message
- (djm) ssh-keygen -i needs seeded RNG; report from markus@
$Id: ChangeLog,v 1.2186 2002/06/07 14:37:00 mouring Exp $
$Id: ChangeLog,v 1.2187 2002/06/07 14:49:56 mouring Exp $

View File

@ -1118,7 +1118,7 @@ launch_login(struct passwd *pw, const char *hostname)
{
/* Launch login(1). */
execl("/usr/bin/login", "login", "-h", hostname,
execl(LOGIN_PROGRAM, "login", "-h", hostname,
#ifdef xxxLOGIN_NEEDS_TERM
(s->term ? s->term : "unknown"),
#endif /* LOGIN_NEEDS_TERM */