aboutsummaryrefslogtreecommitdiff
path: root/www
diff options
context:
space:
mode:
authorStefan Eßer <se@FreeBSD.org>2005-01-08 13:02:18 +0000
committerStefan Eßer <se@FreeBSD.org>2005-01-08 13:02:18 +0000
commit823cc655491638faeb4f7c04f54478e70bea1f67 (patch)
treece58ea7d389e169fe8f7d237aa34d780ce130fe1 /www
parent3cc2db99d85ba8949fa98fd9a40f7d5d56a7009d (diff)
downloadports-823cc655491638faeb4f7c04f54478e70bea1f67.tar.gz
ports-823cc655491638faeb4f7c04f54478e70bea1f67.zip
Notes
Diffstat (limited to 'www')
-rw-r--r--www/mini_httpd/files/patch-mini_httpd.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/www/mini_httpd/files/patch-mini_httpd.c b/www/mini_httpd/files/patch-mini_httpd.c
new file mode 100644
index 000000000000..756be2433ab7
--- /dev/null
+++ b/www/mini_httpd/files/patch-mini_httpd.c
@@ -0,0 +1,11 @@
+--- mini_httpd.c~ Wed Dec 3 19:27:22 2003
++++ mini_httpd.c Thu May 6 23:36:20 2004
+@@ -816,7 +816,7 @@
+ }
+ if ( conn_fd < 0 )
+ {
+- if ( errno == EINTR || errno == EAGAIN )
++ if ( errno == EINTR || errno == EAGAIN || errno == ECONNABORTED )
+ continue; /* try again */
+ #ifdef EPROTO
+ if ( errno == EPROTO )