From 963c1c8fac2dd3df03ff453717d4364b6ac9306c Mon Sep 17 00:00:00 2001 From: Joe Orton Date: Tue, 6 Aug 2019 07:54:24 +0000 Subject: [PATCH] * 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 --- modules/filters/mod_proxy_html.c | 2 +- modules/filters/mod_xml2enc.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/filters/mod_proxy_html.c b/modules/filters/mod_proxy_html.c index 2c55d1d609..0151bf9dd0 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 7a0083c237..aa1551b18d 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 -- 2.50.1