diff options
author | 2001-10-08 19:05:05 +0000 | |
---|---|---|
committer | 2001-10-08 19:05:05 +0000 | |
commit | b5b7941039b73eeabff691adece2cd1991b770f8 (patch) | |
tree | 5dfb46866f43dfa9f2460c38def8418dec96c4b3 /usr.bin/ssh/ssh.c | |
parent | Link order tweak so vax crunches happily. (diff) | |
download | wireguard-openbsd-b5b7941039b73eeabff691adece2cd1991b770f8.tar.xz wireguard-openbsd-b5b7941039b73eeabff691adece2cd1991b770f8.zip |
some more IPv4or6 cleanup
Diffstat (limited to 'usr.bin/ssh/ssh.c')
-rw-r--r-- | usr.bin/ssh/ssh.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c index bf48b5f2639..dcac2b22ab1 100644 --- a/usr.bin/ssh/ssh.c +++ b/usr.bin/ssh/ssh.c @@ -39,7 +39,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh.c,v 1.146 2001/10/01 21:38:53 markus Exp $"); +RCSID("$OpenBSD: ssh.c,v 1.147 2001/10/08 19:05:05 markus Exp $"); #include <openssl/evp.h> #include <openssl/err.h> @@ -661,7 +661,7 @@ again: /* Open a connection to the remote host. */ - cerr = ssh_connect(host, &hostaddr, options.port, + cerr = ssh_connect(host, &hostaddr, options.port, IPv4or6, options.connection_attempts, original_effective_uid != 0 || !options.use_privileged_port, pw, options.proxy_command); |