summaryrefslogtreecommitdiff
path: root/www/lighttpd/files/patch-src__mod_cgi.c
diff options
context:
space:
mode:
authorMarcus Alves Grando <mnag@FreeBSD.org>2007-04-14 14:41:53 +0000
committerMarcus Alves Grando <mnag@FreeBSD.org>2007-04-14 14:41:53 +0000
commit1e06305cee2a644e3da6860829f28ef0228803f9 (patch)
treef1cc7f550592cd8692d15dd58da530e9851c6e06 /www/lighttpd/files/patch-src__mod_cgi.c
parentUpdate to the 20070413 snapshot of GCC 4.3.0. (diff)
- Update to 1.4.15
PR: 111552 Submitted by: Gea-Suan Lin <gslin___gslin.org>
Notes
Notes: svn path=/head/; revision=189953
Diffstat (limited to 'www/lighttpd/files/patch-src__mod_cgi.c')
-rw-r--r--www/lighttpd/files/patch-src__mod_cgi.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/www/lighttpd/files/patch-src__mod_cgi.c b/www/lighttpd/files/patch-src__mod_cgi.c
deleted file mode 100644
index 11804920f657..000000000000
--- a/www/lighttpd/files/patch-src__mod_cgi.c
+++ /dev/null
@@ -1,18 +0,0 @@
-#
-# http://trac.lighttpd.net/trac/ticket/861
-#
---- src/mod_cgi.c.orig Mon Mar 26 09:25:21 2007
-+++ src/mod_cgi.c Mon Mar 26 09:27:23 2007
-@@ -842,6 +842,12 @@
- CONST_BUF_LEN(con->authed_user));
- }
-
-+#ifdef USE_OPENSSL
-+ if (srv_sock->is_ssl) {
-+ cgi_env_add(&env, CONST_STR_LEN("HTTPS"), CONST_STR_LEN("on"));
-+ }
-+#endif
-+
- /* request.content_length < SSIZE_MAX, see request.c */
- ltostr(buf, con->request.content_length);
- cgi_env_add(&env, CONST_STR_LEN("CONTENT_LENGTH"), buf, strlen(buf));