summaryrefslogtreecommitdiff
path: root/sapi
diff options
context:
space:
mode:
authorDoug MacEachern <dougm@php.net>2001-12-07 05:34:44 +0000
committerDoug MacEachern <dougm@php.net>2001-12-07 05:34:44 +0000
commit1b35f3bcfc5c873fea881876b0d3043e93038bcc (patch)
tree82c93ecfc378afb5b3af10576097ce5ecc3e1a16 /sapi
parent27018c0ff0d2493bbfbe8e0815db918edde9044b (diff)
downloadphp-git-1b35f3bcfc5c873fea881876b0d3043e93038bcc.tar.gz
apr_table_elts are now const
Diffstat (limited to 'sapi')
-rw-r--r--sapi/apache2filter/php_functions.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/apache2filter/php_functions.c b/sapi/apache2filter/php_functions.c
index a49e4a70ae..37fece2c7a 100644
--- a/sapi/apache2filter/php_functions.c
+++ b/sapi/apache2filter/php_functions.c
@@ -115,7 +115,7 @@ PHP_FUNCTION(apache_lookup_uri)
PHP_FUNCTION(getallheaders)
{
php_struct *ctx;
- apr_array_header_t *arr;
+ const apr_array_header_t *arr;
char *key, *val;
if (array_init(return_value) == FAILURE) {