summaryrefslogtreecommitdiff
path: root/include/ap_socache.h
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2010-02-09 04:28:35 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2010-02-09 04:28:35 +0000
commite6ce5422d0d73d3a44f8e39bb35512b0c0e90d8f (patch)
treef4b51932c4c20850e2033bee19ab09221296a739 /include/ap_socache.h
parent29fe6fa9209c1abbcc32dd882abec457c008f51b (diff)
downloadhttpd-e6ce5422d0d73d3a44f8e39bb35512b0c0e90d8f.tar.gz
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
Diffstat (limited to 'include/ap_socache.h')
-rw-r--r--include/ap_socache.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ap_socache.h b/include/ap_socache.h
index 2cafd8cbde..984d919b54 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);