diff options
| author | 2001-02-06 23:06:21 +0000 | |
|---|---|---|
| committer | 2001-02-06 23:06:21 +0000 | |
| commit | 21f33759d1702ddf05eb8a68cc22ab399c1d8683 (patch) | |
| tree | 22c1078c268bcb446f74e24510d699d86504c622 | |
| parent | ignore blank lines in addition to comments (diff) | |
| download | wireguard-openbsd-21f33759d1702ddf05eb8a68cc22ab399c1d8683.tar.xz wireguard-openbsd-21f33759d1702ddf05eb8a68cc22ab399c1d8683.zip | |
reorder -{1,2,4,6} options. ok markus@
| -rw-r--r-- | usr.bin/ssh/ssh.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c index 7278d7d00bc..79f00eb0b75 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.91 2001/02/06 23:03:24 jakob Exp $"); +RCSID("$OpenBSD: ssh.c,v 1.92 2001/02/06 23:06:21 jakob Exp $"); #include <openssl/evp.h> #include <openssl/err.h> @@ -173,10 +173,10 @@ usage() fprintf(stderr, " -C Enable compression.\n"); fprintf(stderr, " -N Do not execute a shell or command.\n"); fprintf(stderr, " -g Allow remote hosts to connect to forwarded ports.\n"); - fprintf(stderr, " -4 Use IPv4 only.\n"); - fprintf(stderr, " -6 Use IPv6 only.\n"); fprintf(stderr, " -1 Force protocol version 1.\n"); fprintf(stderr, " -2 Force protocol version 2.\n"); + fprintf(stderr, " -4 Use IPv4 only.\n"); + fprintf(stderr, " -6 Use IPv6 only.\n"); fprintf(stderr, " -o 'option' Process the option as if it was read from a configuration file.\n"); fprintf(stderr, " -s Invoke command (mandatory) as SSH2 subsystem.\n"); exit(1); |
