summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKrzysztof Krzyżaniak <eloy@debian.org>2010-11-08 17:20:34 +0000
committerKrzysztof Krzyżaniak <eloy@debian.org>2010-11-08 17:20:34 +0000
commit76985b6656de4f5cde5dd05f9a9fc673bf9187d7 (patch)
tree21bc61e1e4a50484f67ba44a12c2590a405bf005
parent675cb96ec19777b170a3f7d46a88f5cb838c1021 (diff)
downloadlighttpd-76985b6656de4f5cde5dd05f9a9fc673bf9187d7.tar.gz
more info about patch
-rw-r--r--debian/patches/series1
-rw-r--r--debian/patches/silence-errors.diff6
2 files changed, 6 insertions, 1 deletions
diff --git a/debian/patches/series b/debian/patches/series
index d311d01..a2c5449 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1 +1,2 @@
silence-errors.diff
+debian-changes-1.4.28-2
diff --git a/debian/patches/silence-errors.diff b/debian/patches/silence-errors.diff
index 6aee975..feab5c3 100644
--- a/debian/patches/silence-errors.diff
+++ b/debian/patches/silence-errors.diff
@@ -1,3 +1,7 @@
+From http://redmine.lighttpd.net/projects/lighttpd/repository/revisions/2771
+Subject: Silence annoying "connection closed: poll() -> ERR" error.log message (fixes #2257)
+Upstream bug report: http://redmine.lighttpd.net/issues/2257
+
Index: trunk/src/connections.c
===================================================================
--- trunk.orig/src/connections.c 2010-11-08 18:06:48.000000000 +0100
@@ -8,7 +12,7 @@ Index: trunk/src/connections.c
} else if (revents & FDEVENT_ERR) {
-#ifndef USE_LINUX_SIGIO
+ /* error, connection reset, whatever... we don't want to spam the logfile */
-+#ifndef 0
++#if 0
log_error_write(srv, __FILE__, __LINE__, "sd",
"connection closed: poll() -> ERR", con->fd);
#endif