From 477fac212c83e97aba5c59666811b665baad8f1b Mon Sep 17 00:00:00 2001 From: markus Date: Mon, 15 May 2000 06:52:55 +0000 Subject: fix usage() --- usr.bin/ssh/ssh.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'usr.bin/ssh/ssh.c') 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 #include @@ -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); -- cgit v1.2.3-59-g8ed1b