blob: 1d4424cdbe0d31f445240fa4ac2f97d9f2ea289a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
$NetBSD: patch-bi,v 1.2 2000/03/20 02:25:56 itojun Exp $
--- ssh.c- Wed May 12 20:19:28 1999
+++ ssh.c Mon Mar 20 09:47:32 2000
@@ -280,9 +280,9 @@
fprintf(stderr, " -l user Log in using this user name.\n");
fprintf(stderr, " -n Redirect input from /dev/null.\n");
fprintf(stderr, " -a Disable authentication agent forwarding.\n");
-#if defined(KERBEROS_TGT_PASSING) && defined(KRB5)
- fprintf(stderr, " -k Disable Kerberos ticket passing.\n");
-#endif /* defined(KERBEROS_TGT_PASSING) && defined(KRB5) */
+#ifdef AFS
+ fprintf(stderr, " -k Disable Kerberos ticket and AFS token passing.\n");
+#endif /* AFS */
#ifndef SSH_NO_X11_FORWARDING
fprintf(stderr, " -x Disable X11 connection forwarding.\n");
#endif
@@ -541,6 +541,9 @@
case 'k':
options.kerberos_tgt_passing = 0;
+#ifdef AFS
+ options.afs_token_passing = 0;
+#endif /* AFS */
break;
case 'i':
|