diff options
author | jmc@openbsd.org <jmc@openbsd.org> | 2016-07-16 08:57:55 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2016-07-17 06:21:09 +0200 |
commit | e4eb7d910976fbfc7ce3e90c95c11b07b483d0d7 (patch) | |
tree | aced1eb02b610a9830d6fc8ea188fb9ef2feb39b /ssh.c | |
parent | upstream commit (diff) | |
download | openssh-e4eb7d910976fbfc7ce3e90c95c11b07b483d0d7.tar.xz openssh-e4eb7d910976fbfc7ce3e90c95c11b07b483d0d7.zip |
upstream commit
- add proxyjump to the options list - formatting fixes -
update usage()
ok djm
Upstream-ID: 43d318e14ce677a2eec8f21ef5ba2f9f68a59457
Diffstat (limited to 'ssh.c')
-rw-r--r-- | ssh.c | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: ssh.c,v 1.443 2016/07/15 00:24:30 djm Exp $ */ +/* $OpenBSD: ssh.c,v 1.444 2016/07/16 06:57:55 jmc Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -198,10 +198,11 @@ usage(void) fprintf(stderr, "usage: ssh [-1246AaCfGgKkMNnqsTtVvXxYy] [-b bind_address] [-c cipher_spec]\n" " [-D [bind_address:]port] [-E log_file] [-e escape_char]\n" -" [-F configfile] [-I pkcs11] [-i identity_file] [-L address]\n" -" [-l login_name] [-m mac_spec] [-O ctl_cmd] [-o option] [-p port]\n" -" [-Q query_option] [-R address] [-S ctl_path] [-W host:port]\n" -" [-w local_tun[:remote_tun]] [user@]hostname [command]\n" +" [-F configfile] [-I pkcs11] [-i identity_file]\n" +" [-J [user@]host[:port]] [-L address] [-l login_name] [-m mac_spec]\n" +" [-O ctl_cmd] [-o option] [-p port] [-Q query_option] [-R address]\n" +" [-S ctl_path] [-W host:port] [-w local_tun[:remote_tun]]\n" +" [user@]hostname [command]\n" ); exit(255); } |