diff options
Diffstat (limited to 'ssh.c')
-rw-r--r-- | ssh.c | 11 |
1 files changed, 5 insertions, 6 deletions
@@ -39,7 +39,7 @@ | |||
39 | */ | 39 | */ |
40 | 40 | ||
41 | #include "includes.h" | 41 | #include "includes.h" |
42 | RCSID("$OpenBSD: ssh.c,v 1.119 2001/05/24 18:57:53 stevesk Exp $"); | 42 | RCSID("$OpenBSD: ssh.c,v 1.120 2001/05/28 08:04:39 markus Exp $"); |
43 | 43 | ||
44 | #include <openssl/evp.h> | 44 | #include <openssl/evp.h> |
45 | #include <openssl/err.h> | 45 | #include <openssl/err.h> |
@@ -156,12 +156,12 @@ usage(void) | |||
156 | fprintf(stderr, " -l user Log in using this user name.\n"); | 156 | fprintf(stderr, " -l user Log in using this user name.\n"); |
157 | fprintf(stderr, " -n Redirect input from " _PATH_DEVNULL ".\n"); | 157 | fprintf(stderr, " -n Redirect input from " _PATH_DEVNULL ".\n"); |
158 | fprintf(stderr, " -A Enable authentication agent forwarding.\n"); | 158 | fprintf(stderr, " -A Enable authentication agent forwarding.\n"); |
159 | fprintf(stderr, " -a Disable authentication agent forwarding.\n"); | 159 | fprintf(stderr, " -a Disable authentication agent forwarding (default).\n"); |
160 | #ifdef AFS | 160 | #ifdef AFS |
161 | fprintf(stderr, " -k Disable Kerberos ticket and AFS token forwarding.\n"); | 161 | fprintf(stderr, " -k Disable Kerberos ticket and AFS token forwarding.\n"); |
162 | #endif /* AFS */ | 162 | #endif /* AFS */ |
163 | fprintf(stderr, " -X Enable X11 connection forwarding.\n"); | 163 | fprintf(stderr, " -X Enable X11 connection forwarding.\n"); |
164 | fprintf(stderr, " -x Disable X11 connection forwarding.\n"); | 164 | fprintf(stderr, " -x Disable X11 connection forwarding (default).\n"); |
165 | fprintf(stderr, " -i file Identity for public key authentication " | 165 | fprintf(stderr, " -i file Identity for public key authentication " |
166 | "(default: ~/.ssh/identity)\n"); | 166 | "(default: ~/.ssh/identity)\n"); |
167 | fprintf(stderr, " -t Tty; allocate a tty even if command is given.\n"); | 167 | fprintf(stderr, " -t Tty; allocate a tty even if command is given.\n"); |
@@ -174,8 +174,7 @@ usage(void) | |||
174 | fprintf(stderr, " -f Fork into background after authentication.\n"); | 174 | fprintf(stderr, " -f Fork into background after authentication.\n"); |
175 | fprintf(stderr, " -e char Set escape character; ``none'' = disable (default: ~).\n"); | 175 | fprintf(stderr, " -e char Set escape character; ``none'' = disable (default: ~).\n"); |
176 | 176 | ||
177 | fprintf(stderr, " -c cipher Select encryption algorithm: " | 177 | fprintf(stderr, " -c cipher Select encryption algorithm\n"); |
178 | "``3des'', ``blowfish''\n"); | ||
179 | fprintf(stderr, " -m macs Specify MAC algorithms for protocol version 2.\n"); | 178 | fprintf(stderr, " -m macs Specify MAC algorithms for protocol version 2.\n"); |
180 | fprintf(stderr, " -p port Connect to this port. Server must be on the same port.\n"); | 179 | fprintf(stderr, " -p port Connect to this port. Server must be on the same port.\n"); |
181 | fprintf(stderr, " -L listen-port:host:port Forward local port to remote address\n"); | 180 | fprintf(stderr, " -L listen-port:host:port Forward local port to remote address\n"); |
@@ -191,7 +190,7 @@ usage(void) | |||
191 | fprintf(stderr, " -6 Use IPv6 only.\n"); | 190 | fprintf(stderr, " -6 Use IPv6 only.\n"); |
192 | fprintf(stderr, " -o 'option' Process the option as if it was read from a configuration file.\n"); | 191 | fprintf(stderr, " -o 'option' Process the option as if it was read from a configuration file.\n"); |
193 | fprintf(stderr, " -s Invoke command (mandatory) as SSH2 subsystem.\n"); | 192 | fprintf(stderr, " -s Invoke command (mandatory) as SSH2 subsystem.\n"); |
194 | fprintf(stderr, " -b Local IP address.\n"); | 193 | fprintf(stderr, " -b addr Local IP address.\n"); |
195 | exit(1); | 194 | exit(1); |
196 | } | 195 | } |
197 | 196 | ||