Displaying 2 results from an estimated 2 matches for "execl'd".
Did you mean:
exec'd
2001 Oct 08
2
Porting OpenSSH 2.9.9p2 to Dynix V4.4.4
...ust exec "login" from the lowest level "sh"
You attempted to execute login as a command without
using the shell's exec internal command or from other
than the initial shell.
A "truss -aef" tells me that login is being execl'd like:
27066: execve("/bin/login", 0x080470FC, 0x0815F6CC) argc = 7
27066: argv: login -h <IP> -p -f -- phess
27066: envp: TZ=BST11 SSH_CLIENT=<IP> 1471 22 SSH_TTY=/dev/pts/31
27066: TERM=vt100
Do you have any ideas what...
2002 Jul 23
2
Irix UseLogin wtmp/utmp bug
...ything seems to work fine accept the wtmp(x) and utmp(x) files do
not get updated? The problem existed in openssh 3.0.2 I just upgraded
to 3.4 and still have the problem. Here is what I have found, if anyone
has any info that would be great else I will have to live with this:
The login program is execl'd in the sesssion.c file using the execl()
call:
----------
static void
launch_login(struct passwd *pw, const char *hostname)
{
char *env_init[] = {"MYENV=null", NULL};
/* Launch login(1). */
fprintf(stderr, "X11 forwarding not supported with IRIX
login.\n"...