summaryrefslogtreecommitdiff
path: root/ssh.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2003-09-02 22:58:22 +1000
committerDamien Miller <djm@mindrot.org>2003-09-02 22:58:22 +1000
commitfb10e9abe83d4d0b9ec36ee90587270d5bdc0cfd (patch)
treedea97440da976e91586281b2876a1fec27131e69 /ssh.c
parent46aa3b91398a18dc6865e801167a2a77ec9f402e (diff)
- markus@cvs.openbsd.org 2003/09/01 18:15:50
[readconf.c readconf.h servconf.c servconf.h ssh.c] remove unused kerberos code; ok henning@
Diffstat (limited to 'ssh.c')
-rw-r--r--ssh.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/ssh.c b/ssh.c
index 46640a857..35418f693 100644
--- a/ssh.c
+++ b/ssh.c
@@ -40,7 +40,7 @@
40 */ 40 */
41 41
42#include "includes.h" 42#include "includes.h"
43RCSID("$OpenBSD: ssh.c,v 1.200 2003/08/13 09:07:10 markus Exp $"); 43RCSID("$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) {