diff options
author | djm <djm> | 2003-09-02 12:58:22 +0000 |
---|---|---|
committer | djm <djm> | 2003-09-02 12:58:22 +0000 |
commit | 976a0b7605541500c7ae49eedd1eaecd9d225c21 (patch) | |
tree | 64b84d36d319094c2b665fde030c93d06820f2a8 /ssh.c | |
parent | 9494ad35d32a79aa6a8e21d28d785d1a358795a8 (diff) | |
download | openssh-976a0b7605541500c7ae49eedd1eaecd9d225c21.tar.gz |
- 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.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -40,7 +40,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh.c,v 1.200 2003/08/13 09:07:10 markus Exp $"); +RCSID("$OpenBSD: ssh.c,v 1.201 2003/09/01 18:15:50 markus Exp $"); #include <openssl/evp.h> #include <openssl/err.h> @@ -154,7 +154,6 @@ usage(void) _PATH_SSH_USER_CONFFILE); fprintf(stderr, " -A Enable authentication agent forwarding.\n"); fprintf(stderr, " -a Disable authentication agent forwarding (default).\n"); - fprintf(stderr, " -k Disable Kerberos ticket forwarding.\n"); fprintf(stderr, " -X Enable X11 connection forwarding.\n"); fprintf(stderr, " -x Disable X11 connection forwarding (default).\n"); fprintf(stderr, " -i file Identity for public key authentication " @@ -305,7 +304,7 @@ again: options.forward_agent = 1; break; case 'k': - options.kerberos_tgt_passing = 0; + /* ignored for backward compatibility */ break; case 'i': if (stat(optarg, &st) < 0) { |