diff options
Diffstat (limited to 'www-apache/mod_caucho/files/mod_caucho-3.0.22-ssl.patch')
-rw-r--r-- | www-apache/mod_caucho/files/mod_caucho-3.0.22-ssl.patch | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/www-apache/mod_caucho/files/mod_caucho-3.0.22-ssl.patch b/www-apache/mod_caucho/files/mod_caucho-3.0.22-ssl.patch deleted file mode 100644 index fc6a0b5ac878..000000000000 --- a/www-apache/mod_caucho/files/mod_caucho-3.0.22-ssl.patch +++ /dev/null @@ -1,20 +0,0 @@ -diff -Nru resin-3.0.22.vanilla/modules/c/src/apache2/mod_caucho.c resin-3.0.22/modules/c/src/apache2/mod_caucho.c ---- resin-3.0.22.vanilla/modules/c/src/apache2/mod_caucho.c 2007-04-13 15:41:18.000000000 +0200 -+++ resin-3.0.22/modules/c/src/apache2/mod_caucho.c 2007-04-13 16:00:24.000000000 +0200 -@@ -582,6 +582,16 @@ - } - } - #endif -+ /* Add SSL Client certificate: (requires SSLOptions +StdEnvVars) */ -+ { -+ int i; -+ char **env = (char **)ap_create_environment(r->pool, r->subprocess_env); -+ for (i = 0; env[i]; ++i) { -+ char *name = strsep(&(env[i]), "="); -+ if (strncmp(name, "SSL_CLIENT_CERT", 16) == 0) -+ cse_write_string(s, CSE_CLIENT_CERT, env[i]); -+ } -+ } - } - - /** |