source: trunk/third/openssh/gssapi-name-in-env.patch @ 2374

Last change on this file since 2374 was 2301, checked in by broder, 15 years ago

First attempt at invirtifying ssh.

This patch will set SSH_GSSAPI_NAME if GSSAPI was ever used in the
login process (including for gss-keyex). It could be the first step
towards being able to use Kerberos authentication for git commits.

File size: 496 bytes
RevLine 
[2301]1--- openssh-4.7p1/gss-serv.c
2+++ openssh-4.7p1/gss-serv.c
3@@ -355,6 +355,13 @@
4                child_set_env(envp, envsizep, gssapi_client.store.envvar,
5                    gssapi_client.store.envval);
6        }
7+       if (gssapi_client.exportedname.length != 0 &&
8+           gssapi_client.exportedname.value != NULL) {
9+               debug("Setting %s to %s", "SSH_GSSAPI_NAME",
10+                   gssapi_client.exportedname.value);
11+               child_set_env(envp, envsizep, "SSH_GSSAPI_NAME",
12+                   gssapi_client.exportedname.value);
13+       }
14 }
15 
16 /* Privileged */
Note: See TracBrowser for help on using the repository browser.