diff options
Diffstat (limited to 'www/lighttpd/files')
-rw-r--r-- | www/lighttpd/files/patch-src__connections.c | 11 | ||||
-rw-r--r-- | www/lighttpd/files/patch-src__mod_cgi.c | 18 | ||||
-rw-r--r-- | www/lighttpd/files/patch-src__mod_webdav.c | 18 |
3 files changed, 0 insertions, 47 deletions
diff --git a/www/lighttpd/files/patch-src__connections.c b/www/lighttpd/files/patch-src__connections.c deleted file mode 100644 index 56f4243218e0..000000000000 --- a/www/lighttpd/files/patch-src__connections.c +++ /dev/null @@ -1,11 +0,0 @@ ---- src/connections.c.orig 2007-01-05 10:56:08.000000000 -0800 -+++ src/connections.c 2007-01-05 10:56:23.000000000 -0800 -@@ -970,7 +970,7 @@ - } - } else { - /* a splited \r \n */ -- return -1; -+ break; - } - } - } 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)); diff --git a/www/lighttpd/files/patch-src__mod_webdav.c b/www/lighttpd/files/patch-src__mod_webdav.c deleted file mode 100644 index e8176d65b38e..000000000000 --- a/www/lighttpd/files/patch-src__mod_webdav.c +++ /dev/null @@ -1,18 +0,0 @@ ---- src/mod_webdav.c.orig Tue Oct 10 01:08:09 2006 -+++ src/mod_webdav.c Tue Oct 10 01:09:02 2006 -@@ -1151,11 +1151,13 @@ - * - */ - int webdav_has_lock(server *srv, connection *con, plugin_data *p, buffer *uri) { -- UNUSED(srv); - int has_lock = 1; -- - #ifdef USE_LOCKS - data_string *ds; -+#endif -+ UNUSED(srv); -+ -+#ifdef USE_LOCKS - - /** - * This implementation is more fake than real |