summaryrefslogtreecommitdiff
path: root/www/lighttpd/files
diff options
context:
space:
mode:
authorMarcus Alves Grando <mnag@FreeBSD.org>2009-03-21 22:22:43 +0000
committerMarcus Alves Grando <mnag@FreeBSD.org>2009-03-21 22:22:43 +0000
commita9018972be270c88d3b673fb5ca230086e6e6941 (patch)
tree4a1531025baac5aa046454df47e84ca1fcd9ae51 /www/lighttpd/files
parentUpdate to DEV300_m44. (diff)
- Update to 1.4.22
PR: 132395 Submitted by: Daniel Gerzo <danger___freebsd.org>
Diffstat (limited to 'www/lighttpd/files')
-rw-r--r--www/lighttpd/files/patch-src__network_freebsd_sendfile.c18
-rw-r--r--www/lighttpd/files/patch-src_mod_simple_vhost.c13
2 files changed, 0 insertions, 31 deletions
diff --git a/www/lighttpd/files/patch-src__network_freebsd_sendfile.c b/www/lighttpd/files/patch-src__network_freebsd_sendfile.c
deleted file mode 100644
index 69cc9d33fc24..000000000000
--- a/www/lighttpd/files/patch-src__network_freebsd_sendfile.c
+++ /dev/null
@@ -1,18 +0,0 @@
-#
-# Backport http://redmine.lighttpd.net/issues/show/1913
-#
---- src/network_freebsd_sendfile.c.orig 2009-02-05 09:41:44.000000000 -0200
-+++ src/network_freebsd_sendfile.c 2009-02-24 15:11:29.000000000 -0300
-@@ -167,8 +167,9 @@
- switch(errno) {
- case EAGAIN:
- case EINTR:
-- r = 0; /* try again later */
-- break;
-+ /* for EAGAIN/EINTR r still contains the sent bytes */
-+ break; /* try again later */
-+ case EPIPE:
- case ENOTCONN:
- return -2;
- default:
-
diff --git a/www/lighttpd/files/patch-src_mod_simple_vhost.c b/www/lighttpd/files/patch-src_mod_simple_vhost.c
deleted file mode 100644
index 338521a44458..000000000000
--- a/www/lighttpd/files/patch-src_mod_simple_vhost.c
+++ /dev/null
@@ -1,13 +0,0 @@
-Index: src/mod_simple_vhost.c
-===================================================================
---- src/mod_simple_vhost.c (revision 2398)
-+++ src/mod_simple_vhost.c (revision 2399)
-@@ -249,6 +249,8 @@
- return HANDLER_GO_ON;
- } else {
- buffer_copy_string_buffer(con->server_name, p->conf.default_host);
-+ buffer_copy_string_buffer(con->physical.doc_root, p->doc_root);
-+
- /* do not cache default host */
- return HANDLER_GO_ON;
- }