diff options
author | 2020-10-12 08:36:36 +0000 | |
---|---|---|
committer | 2020-10-12 08:36:36 +0000 | |
commit | 9b84b43f15eb709b9d627124f4565ab5431790b0 (patch) | |
tree | 3b23bef6a1d6a9ee74a737f99eca51c504afc929 /usr.bin/ssh/ssh.c | |
parent | Mention TP-LINK TL-NG421. (diff) | |
download | wireguard-openbsd-9b84b43f15eb709b9d627124f4565ab5431790b0.tar.xz wireguard-openbsd-9b84b43f15eb709b9d627124f4565ab5431790b0.zip |
Zap unused family parameter from ssh_connect_direct()
sshconnect.c r1.241 from 2013 made it unused; found while reading code.
OK djm
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 400d2f140e5..52d7ac3b145 100644 --- a/usr.bin/ssh/ssh.c +++ b/usr.bin/ssh/ssh.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh.c,v 1.537 2020/10/03 09:22:26 djm Exp $ */ +/* $OpenBSD: ssh.c,v 1.538 2020/10/12 08:36:36 kn Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -1521,7 +1521,7 @@ main(int ac, char **av) /* Open a connection to the remote host. */ if (ssh_connect(ssh, host, host_arg, addrs, &hostaddr, options.port, - options.address_family, options.connection_attempts, + options.connection_attempts, &timeout_ms, options.tcp_keep_alive) != 0) exit(255); |