From: Joe Orton Date: Tue, 6 Aug 2019 07:54:24 +0000 (+0000) Subject: * modules/filters/mod_proxy_html.c, modules/filters/mod_xml2enc.c: X-Git-Tag: 2.5.0-alpha2-ci-test-only~1954 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=963c1c8fac2dd3df03ff453717d4364b6ac9306c;p=thirdparty%2Fapache%2Fhttpd.git * modules/filters/mod_proxy_html.c, modules/filters/mod_xml2enc.c: Fix gcc 9 warnings in code attempting to reduce gcc warnings. (should have used expat...) mod_xml2enc.c:26:28: warning: "/*" within comment [-Wcomment] 26 | /* libxml2 includes unicode/*.h files which uses C++ comments */ | mod_proxy_html.c:32:28: warning: "/*" within comment [-Wcomment] 32 | /* libxml2 includes unicode/*.h files which uses C++ comments */ | git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1864464 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/filters/mod_proxy_html.c b/modules/filters/mod_proxy_html.c index 2c55d1d6099..0151bf9dd0f 100644 --- a/modules/filters/mod_proxy_html.c +++ b/modules/filters/mod_proxy_html.c @@ -29,7 +29,7 @@ #define VERBOSEB(x) if (verbose) {x} #endif -/* libxml2 includes unicode/*.h files which uses C++ comments */ +/* libxml2 includes unicode/[...].h files which uses C++ comments */ #if defined(__GNUC__) #if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6) #pragma GCC diagnostic push diff --git a/modules/filters/mod_xml2enc.c b/modules/filters/mod_xml2enc.c index 7a0083c2378..aa1551b18db 100644 --- a/modules/filters/mod_xml2enc.c +++ b/modules/filters/mod_xml2enc.c @@ -23,7 +23,7 @@ #include -/* libxml2 includes unicode/*.h files which uses C++ comments */ +/* libxml2 includes unicode/[...].h files which uses C++ comments */ #if defined(__GNUC__) #if __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6) #pragma GCC diagnostic push