diff options
author | 2001-03-04 10:57:53 +0000 | |
---|---|---|
committer | 2001-03-04 10:57:53 +0000 | |
commit | 6a98fd4505c0b2d3bb837b9c1dc9b21b3856cc34 (patch) | |
tree | ec969a1b124067f58956c7dbbe32f1b1de86093c /usr.bin/ssh/ssh.c | |
parent | Better diagnostics for locking errors. Fix panic before panic in (diff) | |
download | wireguard-openbsd-6a98fd4505c0b2d3bb837b9c1dc9b21b3856cc34.tar.xz wireguard-openbsd-6a98fd4505c0b2d3bb837b9c1dc9b21b3856cc34.zip |
add -m to usage; ok markus@
Diffstat (limited to 'usr.bin/ssh/ssh.c')
-rw-r--r-- | usr.bin/ssh/ssh.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c index 40a2b0017b8..1d82b5f06f5 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.101 2001/03/03 23:59:34 markus Exp $"); +RCSID("$OpenBSD: ssh.c,v 1.102 2001/03/04 10:57:53 stevesk Exp $"); #include <openssl/evp.h> #include <openssl/err.h> @@ -167,6 +167,7 @@ usage(void) fprintf(stderr, " -c cipher Select encryption algorithm: " "``3des'', ``blowfish''\n"); + fprintf(stderr, " -m macs Specify MAC algorithms for protocol version 2.\n"); fprintf(stderr, " -p port Connect to this port. Server must be on the same port.\n"); fprintf(stderr, " -L listen-port:host:port Forward local port to remote address\n"); fprintf(stderr, " -R listen-port:host:port Forward remote port to local address\n"); |