From: William A. Rowe Jr Date: Tue, 9 Feb 2010 04:28:35 +0000 (+0000) Subject: The iterator data is not volatile, data aught to be const X-Git-Tag: 2.3.6~494 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e6ce5422d0d73d3a44f8e39bb35512b0c0e90d8f;p=thirdparty%2Fapache%2Fhttpd.git The iterator data is not volatile, data aught to be const git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@907929 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/include/ap_socache.h b/include/ap_socache.h index 2cafd8cbdeb..984d919b540 100644 --- a/include/ap_socache.h +++ b/include/ap_socache.h @@ -74,7 +74,7 @@ typedef apr_status_t (*ap_socache_iterator_t)(ap_socache_instance_t *instance, server_rec *s, const unsigned char *id, unsigned int idlen, - unsigned char *data, + const unsigned char *data, unsigned int datalen, apr_pool_t *pool);