diff options
author | 2000-05-15 06:52:55 +0000 | |
---|---|---|
committer | 2000-05-15 06:52:55 +0000 | |
commit | 477fac212c83e97aba5c59666811b665baad8f1b (patch) | |
tree | 9466622dcd0537f5335525184f22753932c9eacd /usr.bin/ssh/ssh.c | |
parent | Cardbus serial infrastructure (diff) | |
download | wireguard-openbsd-477fac212c83e97aba5c59666811b665baad8f1b.tar.xz wireguard-openbsd-477fac212c83e97aba5c59666811b665baad8f1b.zip |
fix usage()
Diffstat (limited to 'usr.bin/ssh/ssh.c')
-rw-r--r-- | usr.bin/ssh/ssh.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c index 0ab3f9fb058..a250b858bde 100644 --- a/usr.bin/ssh/ssh.c +++ b/usr.bin/ssh/ssh.c @@ -11,7 +11,7 @@ */ #include "includes.h" -RCSID("$Id: ssh.c,v 1.51 2000/05/08 17:12:15 markus Exp $"); +RCSID("$Id: ssh.c,v 1.52 2000/05/15 06:52:55 markus Exp $"); #include <openssl/evp.h> #include <openssl/dsa.h> @@ -112,6 +112,7 @@ usage() #ifdef AFS fprintf(stderr, " -k Disable Kerberos ticket and AFS token forwarding.\n"); #endif /* AFS */ + fprintf(stderr, " -X Enable X11 connection forwarding.\n"); fprintf(stderr, " -x Disable X11 connection forwarding.\n"); fprintf(stderr, " -i file Identity for RSA authentication (default: ~/.ssh/identity).\n"); fprintf(stderr, " -t Tty; allocate a tty even if command is given.\n"); @@ -422,7 +423,7 @@ main(int ac, char **av) if (!host) usage(); - OpenSSL_add_all_algorithms(); + OpenSSL_add_all_algorithms(); /* Initialize the command to execute on remote host. */ buffer_init(&command); |