From: Jim Jagielski Date: Fri, 24 Jan 2014 21:16:54 +0000 (+0000) Subject: just put up w/ the error message... no real way to X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=41238ffbe87f53a24d3e5443d5aae4bce1b10b0e;p=thirdparty%2Fapache%2Fhttpd.git 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 --- 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 */