mirror of git://anongit.mindrot.org/openssh.git
- markus@cvs.openbsd.org 2002/06/12 01:09:52
[ssh.c] ssh_connect returns 0 on success
This commit is contained in:
parent
2415757253
commit
da394cae04
|
@ -3,6 +3,9 @@
|
|||
- markus@cvs.openbsd.org 2002/06/11 23:03:54
|
||||
[ssh.c]
|
||||
remove unused cruft.
|
||||
- markus@cvs.openbsd.org 2002/06/12 01:09:52
|
||||
[ssh.c]
|
||||
ssh_connect returns 0 on success
|
||||
|
||||
20020611
|
||||
- (bal) ssh-agent.c RCSD fix (|unexpand already done)
|
||||
|
@ -915,4 +918,4 @@
|
|||
- (stevesk) entropy.c: typo in debug message
|
||||
- (djm) ssh-keygen -i needs seeded RNG; report from markus@
|
||||
|
||||
$Id: ChangeLog,v 1.2212 2002/06/12 16:09:39 mouring Exp $
|
||||
$Id: ChangeLog,v 1.2213 2002/06/12 16:11:12 mouring Exp $
|
||||
|
|
4
ssh.c
4
ssh.c
|
@ -40,7 +40,7 @@
|
|||
*/
|
||||
|
||||
#include "includes.h"
|
||||
RCSID("$OpenBSD: ssh.c,v 1.178 2002/06/11 23:03:54 markus Exp $");
|
||||
RCSID("$OpenBSD: ssh.c,v 1.179 2002/06/12 01:09:52 markus Exp $");
|
||||
|
||||
#include <openssl/evp.h>
|
||||
#include <openssl/err.h>
|
||||
|
@ -620,7 +620,7 @@ again:
|
|||
#else
|
||||
original_effective_uid == 0 && options.use_privileged_port,
|
||||
#endif
|
||||
options.proxy_command) < 0)
|
||||
options.proxy_command) != 0)
|
||||
exit(1);
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue