You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jo...@apache.org on 2019/06/20 14:47:23 UTC

svn commit: r1861690 - /httpd/httpd/trunk/server/util.c

Author: jorton
Date: Thu Jun 20 14:47:23 2019
New Revision: 1861690

URL: http://svn.apache.org/viewvc?rev=1861690&view=rev
Log:
* server/util.c: Make "nul" symbol private.

Modified:
    httpd/httpd/trunk/server/util.c

Modified: httpd/httpd/trunk/server/util.c
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/util.c?rev=1861690&r1=1861689&r2=1861690&view=diff
==============================================================================
--- httpd/httpd/trunk/server/util.c (original)
+++ httpd/httpd/trunk/server/util.c Thu Jun 20 14:47:23 2019
@@ -2925,7 +2925,7 @@ static apr_status_t varbuf_cleanup(void
     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,