From 41238ffbe87f53a24d3e5443d5aae4bce1b10b0e Mon Sep 17 00:00:00 2001 From: Jim Jagielski Date: Fri, 24 Jan 2014 21:16:54 +0000 Subject: [PATCH] just put up w/ the error message... no real way to do this :/ git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1561184 13f79535-47bb-0310-9956-ffa450edef68 --- server/core.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/server/core.c b/server/core.c index 567b82138c8..ff7c43dce0e 100644 --- a/server/core.c +++ b/server/core.c @@ -4904,12 +4904,7 @@ static int core_pre_connection(conn_rec *c, void *csd) * problem with simple HTTP.) */ rv = apr_socket_opt_set(csd, APR_TCP_NODELAY, 1); - if (rv != APR_SUCCESS - && rv != APR_ENOTIMPL -#ifdef APR_EOPNOTSUPP - && rv != APR_EOPNOTSUPP -#endif - ) { + if (rv != APR_SUCCESS && rv != APR_ENOTIMPL) { /* expected cause is that the client disconnected already, * hence the debug level */ -- 2.47.3