Bugzilla – Attachment 221 Details for
Bug 487
Patches to fix ssh1 kerberos handling and some other items
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Allow -k to work with GSSAPI
openssh-lanl2.patch (text/plain), 1008 bytes, created by
Stephen J Smoogen
on 2003-02-07 09:37:51 AEDT
(
hide
)
Description:
Allow -k to work with GSSAPI
Filename:
MIME Type:
Creator:
Stephen J Smoogen
Created:
2003-02-07 09:37:51 AEDT
Size:
1008 bytes
patch
obsolete
>--- ./ssh.c.lanl Wed Jun 12 10:11:13 2002 >+++ ./ssh.c Tue Sep 3 16:31:19 2002 >@@ -159,7 +159,7 @@ > _PATH_SSH_USER_CONFFILE); > fprintf(stderr, " -A Enable authentication agent forwarding.\n"); > fprintf(stderr, " -a Disable authentication agent forwarding (default).\n"); >-#ifdef AFS >+#if defined(AFS) || defined(KRB5) || defined(GSSAPI) > fprintf(stderr, " -k Disable Kerberos ticket and AFS token forwarding.\n"); > #endif /* AFS */ > fprintf(stderr, " -X Enable X11 connection forwarding.\n"); >@@ -312,12 +312,17 @@ > case 'A': > options.forward_agent = 1; > break; >-#ifdef AFS >+#if defined(AFS) || defined(KRB5) || defined(GSSAPI) > case 'k': > options.kerberos_tgt_passing = 0; >+#ifdef AFS > options.afs_token_passing = 0; >+#endif /* AFS */ >+#ifdef GSSAPI >+ options.gss_deleg_creds = 0; >+#endif /* GSSAPI */ > break; >-#endif >+#endif /* KRB5 */ > case 'i': > if (stat(optarg, &st) < 0) { > fprintf(stderr, "Warning: Identity file %s "
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 487
:
220
| 221 |
222
|
223