From: Christophe Jaillet Date: Sun, 1 Oct 2023 16:33:40 +0000 (+0000) Subject: DOXYGEN has nothing to do here, just remove this strange "#if defined(DOXYGEN)" X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7faee2a97e3bba63b8755f5f52e6c1efef475332;p=thirdparty%2Fapache%2Fhttpd.git 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 --- diff --git a/modules/http2/h2_proxy_session.c b/modules/http2/h2_proxy_session.c index db223012766..3faa691c71f 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); }