diff options
author | Joe Orton <jorton@apache.org> | 2019-06-20 16:47:23 +0200 |
---|---|---|
committer | Joe Orton <jorton@apache.org> | 2019-06-20 16:47:23 +0200 |
commit | b6f137d7847e866d5be1cd2ef6d1e79dd7764914 (patch) | |
tree | 7b4cbc0f4a110a81ddd41c14ce999105dc7680a8 | |
parent | Add an --enable-reduced-exports configure option to link libmain.a (diff) | |
download | apache2-b6f137d7847e866d5be1cd2ef6d1e79dd7764914.tar.xz apache2-b6f137d7847e866d5be1cd2ef6d1e79dd7764914.zip |
* 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
-rw-r--r-- | server/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/util.c b/server/util.c index 3e1b536de7..b563347543 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, |