summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1999-09-30 20:39:09 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1999-09-30 20:39:09 +0000
commit9f841e7714f8991e85f99e55257c9b7953e3bb4d (patch)
treecb4a42b7e0ec51d4cb6293840fd87a8d28ad6214
parentfb360af30d2b188cea96183ccb133f6cec9f9dcc (diff)
reorder usage, like real ssh
-rw-r--r--usr.bin/ssh/ssh.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c
index 9e799919c95..21f96348c54 100644
--- a/usr.bin/ssh/ssh.c
+++ b/usr.bin/ssh/ssh.c
@@ -18,7 +18,7 @@ Modified to work with SSL by Niels Provos <provos@citi.umich.edu> in Canada.
*/
#include "includes.h"
-RCSID("$Id: ssh.c,v 1.20 1999/09/30 18:28:36 provos Exp $");
+RCSID("$Id: ssh.c,v 1.21 1999/09/30 20:39:08 deraadt Exp $");
#include "xmalloc.h"
#include "ssh.h"
@@ -102,12 +102,12 @@ usage()
"``3des'', "
"``blowfish''\n");
fprintf(stderr, " -p port Connect to this port. Server must be on the same port.\n");
- fprintf(stderr, " -g Allow remote hosts to connect to forwarded ports.\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");
fprintf(stderr, " These cause %s to listen for connections on a port, and\n", av0);
fprintf(stderr, " forward them to the other side by connecting to host:port.\n");
fprintf(stderr, " -C Enable compression.\n");
+ fprintf(stderr, " -g Allow remote hosts to connect to forwarded ports.\n");
fprintf(stderr, " -o 'option' Process the option as if it was read from a configuration file.\n");
exit(1);
}