diff options
Diffstat (limited to 'ssh.c')
-rw-r--r-- | ssh.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -40,7 +40,7 @@ | |||
40 | */ | 40 | */ |
41 | 41 | ||
42 | #include "includes.h" | 42 | #include "includes.h" |
43 | RCSID("$OpenBSD: ssh.c,v 1.200 2003/08/13 09:07:10 markus Exp $"); | 43 | RCSID("$OpenBSD: ssh.c,v 1.201 2003/09/01 18:15:50 markus Exp $"); |
44 | 44 | ||
45 | #include <openssl/evp.h> | 45 | #include <openssl/evp.h> |
46 | #include <openssl/err.h> | 46 | #include <openssl/err.h> |
@@ -154,7 +154,6 @@ usage(void) | |||
154 | _PATH_SSH_USER_CONFFILE); | 154 | _PATH_SSH_USER_CONFFILE); |
155 | fprintf(stderr, " -A Enable authentication agent forwarding.\n"); | 155 | fprintf(stderr, " -A Enable authentication agent forwarding.\n"); |
156 | fprintf(stderr, " -a Disable authentication agent forwarding (default).\n"); | 156 | fprintf(stderr, " -a Disable authentication agent forwarding (default).\n"); |
157 | fprintf(stderr, " -k Disable Kerberos ticket forwarding.\n"); | ||
158 | fprintf(stderr, " -X Enable X11 connection forwarding.\n"); | 157 | fprintf(stderr, " -X Enable X11 connection forwarding.\n"); |
159 | fprintf(stderr, " -x Disable X11 connection forwarding (default).\n"); | 158 | fprintf(stderr, " -x Disable X11 connection forwarding (default).\n"); |
160 | fprintf(stderr, " -i file Identity for public key authentication " | 159 | fprintf(stderr, " -i file Identity for public key authentication " |
@@ -305,7 +304,7 @@ again: | |||
305 | options.forward_agent = 1; | 304 | options.forward_agent = 1; |
306 | break; | 305 | break; |
307 | case 'k': | 306 | case 'k': |
308 | options.kerberos_tgt_passing = 0; | 307 | /* ignored for backward compatibility */ |
309 | break; | 308 | break; |
310 | case 'i': | 309 | case 'i': |
311 | if (stat(optarg, &st) < 0) { | 310 | if (stat(optarg, &st) < 0) { |