diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2004-11-07 17:57:31 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2004-11-07 17:57:31 +0000 |
commit | 136d81ed6761ed9d73f1b10b249d898d67df5d08 (patch) | |
tree | 01d3ae8e56b68ff577a1644d4a4fed533c21ee40 | |
parent | c1c70565c0fa16f17f0e9666dcd86bf171f2ef6f (diff) |
usage():
- add -O
- sync -S w/ manpage
- remove -h
-rw-r--r-- | usr.bin/ssh/ssh.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c index f9000985cf4..77febd6afa1 100644 --- a/usr.bin/ssh/ssh.c +++ b/usr.bin/ssh/ssh.c @@ -40,7 +40,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh.c,v 1.229 2004/11/07 00:01:46 djm Exp $"); +RCSID("$OpenBSD: ssh.c,v 1.230 2004/11/07 17:57:30 jmc Exp $"); #include <openssl/evp.h> #include <openssl/err.h> @@ -157,10 +157,11 @@ static void usage(void) { fprintf(stderr, -"usage: ssh [-1246AaCfghkMNnqsTtVvXxY] [-b bind_address] [-c cipher_spec]\n" +"usage: ssh [-1246AaCfgkMNnqsTtVvXxY] [-b bind_address] [-c cipher_spec]\n" " [-D port] [-e escape_char] [-F configfile] [-i identity_file]\n" -" [-L port:host:hostport] [-l login_name] [-m mac_spec] [-o option]\n" -" [-p port] [-R port:host:hostport] [-S ctl] [user@]hostname [command]\n" +" [-L port:host:hostport] [-l login_name] [-m mac_spec] [-O ctl_cmd]\n" +" [-o option] [-p port] [-R port:host:hostport] [-S ctl_path]\n" +" [user@]hostname [command]\n" ); exit(1); } |