mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-27 07:44:29 +02:00
- markus@cvs.openbsd.org 2002/05/25 08:50:39
[sshconnect2.c] execlp->execl; from stevesk
This commit is contained in:
parent
5206b951c6
commit
4887da222b
@ -28,6 +28,9 @@
|
|||||||
[sshconnect2.c]
|
[sshconnect2.c]
|
||||||
stat ssh-keysign first, print error if stat fails;
|
stat ssh-keysign first, print error if stat fails;
|
||||||
some debug->error; fix comment
|
some debug->error; fix comment
|
||||||
|
- markus@cvs.openbsd.org 2002/05/25 08:50:39
|
||||||
|
[sshconnect2.c]
|
||||||
|
execlp->execl; from stevesk
|
||||||
|
|
||||||
20020604
|
20020604
|
||||||
- (stevesk) [channels.c] bug #164 patch from YOSHIFUJI Hideaki (changed
|
- (stevesk) [channels.c] bug #164 patch from YOSHIFUJI Hideaki (changed
|
||||||
@ -712,4 +715,4 @@
|
|||||||
- (stevesk) entropy.c: typo in debug message
|
- (stevesk) entropy.c: typo in debug message
|
||||||
- (djm) ssh-keygen -i needs seeded RNG; report from markus@
|
- (djm) ssh-keygen -i needs seeded RNG; report from markus@
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.2151 2002/06/06 19:59:29 mouring Exp $
|
$Id: ChangeLog,v 1.2152 2002/06/06 20:05:57 mouring Exp $
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
RCSID("$OpenBSD: sshconnect2.c,v 1.101 2002/05/24 08:45:14 markus Exp $");
|
RCSID("$OpenBSD: sshconnect2.c,v 1.102 2002/05/25 08:50:39 markus Exp $");
|
||||||
|
|
||||||
#include "ssh.h"
|
#include "ssh.h"
|
||||||
#include "ssh2.h"
|
#include "ssh2.h"
|
||||||
@ -933,7 +933,7 @@ ssh_keysign(
|
|||||||
close(to[1]);
|
close(to[1]);
|
||||||
if (dup2(to[0], STDIN_FILENO) < 0)
|
if (dup2(to[0], STDIN_FILENO) < 0)
|
||||||
fatal("ssh_keysign: dup2: %s", strerror(errno));
|
fatal("ssh_keysign: dup2: %s", strerror(errno));
|
||||||
execlp(_PATH_SSH_KEY_SIGN, _PATH_SSH_KEY_SIGN, (char *) 0);
|
execl(_PATH_SSH_KEY_SIGN, _PATH_SSH_KEY_SIGN, (char *) 0);
|
||||||
fatal("ssh_keysign: exec(%s): %s", _PATH_SSH_KEY_SIGN,
|
fatal("ssh_keysign: exec(%s): %s", _PATH_SSH_KEY_SIGN,
|
||||||
strerror(errno));
|
strerror(errno));
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user