You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2010/02/09 05:28:36 UTC

svn commit: r907929 - /httpd/httpd/trunk/include/ap_socache.h

Author: wrowe
Date: Tue Feb  9 04:28:35 2010
New Revision: 907929

URL: http://svn.apache.org/viewvc?rev=907929&view=rev
Log:
The iterator data is not volatile, data aught to be const

Modified:
    httpd/httpd/trunk/include/ap_socache.h

Modified: httpd/httpd/trunk/include/ap_socache.h
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/include/ap_socache.h?rev=907929&r1=907928&r2=907929&view=diff
==============================================================================
--- httpd/httpd/trunk/include/ap_socache.h (original)
+++ httpd/httpd/trunk/include/ap_socache.h Tue Feb  9 04:28:35 2010
@@ -74,7 +74,7 @@
                                               server_rec *s,
                                               const unsigned char *id,
                                               unsigned int idlen,
-                                              unsigned char *data,
+                                              const unsigned char *data,
                                               unsigned int datalen,
                                               apr_pool_t *pool);