summaryrefslogtreecommitdiffstats
path: root/modules/http2
diff options
context:
space:
mode:
authorChristophe Jaillet <jailletc36@apache.org>2023-10-01 18:33:40 +0200
committerChristophe Jaillet <jailletc36@apache.org>2023-10-01 18:33:40 +0200
commit7faee2a97e3bba63b8755f5f52e6c1efef475332 (patch)
tree008641a69817780121846c100a3ce4cfdb7d0bb5 /modules/http2
parentSlightly optimize h2_mplx_c1_streams_do(). (diff)
downloadapache2-7faee2a97e3bba63b8755f5f52e6c1efef475332.tar.xz
apache2-7faee2a97e3bba63b8755f5f52e6c1efef475332.zip
DOXYGEN has nothing to do here, just remove this strange "#if defined(DOXYGEN)"
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1912663 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/http2')
-rw-r--r--modules/http2/h2_proxy_session.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/http2/h2_proxy_session.c b/modules/http2/h2_proxy_session.c
index db22301276..3faa691c71 100644
--- a/modules/http2/h2_proxy_session.c
+++ b/modules/http2/h2_proxy_session.c
@@ -789,7 +789,7 @@ static apr_status_t session_start(h2_proxy_session *session)
apr_socket_t *s;
s = ap_get_conn_socket(session->c);
-#if (!defined(WIN32) && !defined(NETWARE)) || defined(DOXYGEN)
+#if !defined(WIN32) && !defined(NETWARE)
if (s) {
ap_sock_disable_nagle(s);
}