From: Joe Orton Date: Thu, 20 Jun 2019 14:47:23 +0000 (+0000) Subject: * server/util.c: Make "nul" symbol private. X-Git-Tag: 2.5.0-alpha2-ci-test-only~2023 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b6f137d7847e866d5be1cd2ef6d1e79dd7764914;p=thirdparty%2Fapache%2Fhttpd.git * server/util.c: Make "nul" symbol private. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1861690 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/server/util.c b/server/util.c index 3e1b536de7e..b5633475436 100644 --- a/server/util.c +++ b/server/util.c @@ -2925,7 +2925,7 @@ static apr_status_t varbuf_cleanup(void *info_) return APR_SUCCESS; } -const char nul = '\0'; +static const char nul = '\0'; static char * const varbuf_empty = (char *)&nul; AP_DECLARE(void) ap_varbuf_init(apr_pool_t *p, struct ap_varbuf *vb,