diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2001-03-04 10:57:54 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2001-03-04 10:57:54 +0000 |
commit | ff35ce58e9ae258041da2260dda7f3ef76f71ebe (patch) | |
tree | 8a98cc74714d44ae0f802131a94cc0adcf1191c4 | |
parent | 13d8de57e2476d3bdbc09bacaa891d1bb6c05733 (diff) |
add -m to usage; ok markus@
-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"); |