diff options
Diffstat (limited to 'sapi')
-rw-r--r-- | sapi/aolserver/aolserver.c | 2 | ||||
-rw-r--r-- | sapi/apache/php_apache.c | 2 | ||||
-rw-r--r-- | sapi/apache2filter/php_functions.c | 2 | ||||
-rw-r--r-- | sapi/apache2handler/php_functions.c | 2 | ||||
-rw-r--r-- | sapi/apache_hooks/php_apache.c | 4 | ||||
-rw-r--r-- | sapi/continuity/capi.c | 2 | ||||
-rw-r--r-- | sapi/milter/php_milter.c | 2 | ||||
-rw-r--r-- | sapi/nsapi/nsapi.c | 2 |
8 files changed, 9 insertions, 9 deletions
diff --git a/sapi/aolserver/aolserver.c b/sapi/aolserver/aolserver.c index 37bb5aab29..e491a4a300 100644 --- a/sapi/aolserver/aolserver.c +++ b/sapi/aolserver/aolserver.c @@ -240,7 +240,7 @@ static void php_info_aolserver(ZEND_MODULE_INFO_FUNC_ARGS) PHP_FUNCTION(getallheaders); -static zend_function_entry aolserver_functions[] = { +const static zend_function_entry aolserver_functions[] = { PHP_FE(getallheaders, NULL) {NULL, NULL, NULL} }; diff --git a/sapi/apache/php_apache.c b/sapi/apache/php_apache.c index ca424e3455..b740464d5b 100644 --- a/sapi/apache/php_apache.c +++ b/sapi/apache/php_apache.c @@ -56,7 +56,7 @@ PHP_FUNCTION(apache_reset_timeout); PHP_MINFO_FUNCTION(apache); -zend_function_entry apache_functions[] = { +const zend_function_entry apache_functions[] = { PHP_FE(virtual, NULL) PHP_FE(apache_request_headers, NULL) PHP_FE(apache_note, NULL) diff --git a/sapi/apache2filter/php_functions.c b/sapi/apache2filter/php_functions.c index 9340204816..b96a08d417 100644 --- a/sapi/apache2filter/php_functions.c +++ b/sapi/apache2filter/php_functions.c @@ -359,7 +359,7 @@ PHP_MINFO_FUNCTION(apache) php_info_print_table_end(); } -static zend_function_entry apache_functions[] = { +static const zend_function_entry apache_functions[] = { PHP_FE(apache_lookup_uri, NULL) PHP_FE(virtual, NULL) PHP_FE(apache_request_headers, NULL) diff --git a/sapi/apache2handler/php_functions.c b/sapi/apache2handler/php_functions.c index fd6e34ef11..970cbbf358 100644 --- a/sapi/apache2handler/php_functions.c +++ b/sapi/apache2handler/php_functions.c @@ -478,7 +478,7 @@ PHP_MINFO_FUNCTION(apache) } } -static zend_function_entry apache_functions[] = { +static const zend_function_entry apache_functions[] = { PHP_FE(apache_lookup_uri, NULL) PHP_FE(virtual, NULL) PHP_FE(apache_request_headers, NULL) diff --git a/sapi/apache_hooks/php_apache.c b/sapi/apache_hooks/php_apache.c index fb56d3dfb8..8ab47501e4 100644 --- a/sapi/apache_hooks/php_apache.c +++ b/sapi/apache_hooks/php_apache.c @@ -60,7 +60,7 @@ PHP_FUNCTION(apache_get_modules); PHP_MINFO_FUNCTION(apache); -zend_function_entry apache_functions[] = { +const zend_function_entry apache_functions[] = { PHP_FE(virtual, NULL) PHP_FE(apache_request_headers, NULL) PHP_FE(apache_note, NULL) @@ -1286,7 +1286,7 @@ PHP_FUNCTION(apache_request_send_header_field) /* {{{ php_apache_request_class_functions */ -static zend_function_entry php_apache_request_class_functions[] = { +const static zend_function_entry php_apache_request_class_functions[] = { /* string slots */ PHP_FALIAS(args, apache_request_args, NULL) PHP_FALIAS(boundary, apache_request_boundary, NULL) diff --git a/sapi/continuity/capi.c b/sapi/continuity/capi.c index cb99b86171..e1fc659e43 100644 --- a/sapi/continuity/capi.c +++ b/sapi/continuity/capi.c @@ -80,7 +80,7 @@ PHP_FUNCTION(continuity_virtual); PHP_FUNCTION(continuity_request_headers); PHP_FUNCTION(continuity_response_headers); -zend_function_entry continuity_functions[] = { +const zend_function_entry continuity_functions[] = { {NULL, NULL, NULL} }; diff --git a/sapi/milter/php_milter.c b/sapi/milter/php_milter.c index 620e39008d..e97e3117fd 100644 --- a/sapi/milter/php_milter.c +++ b/sapi/milter/php_milter.c @@ -770,7 +770,7 @@ PHP_MINFO_FUNCTION(milter) /* {{{ milter_functions[] */ -static zend_function_entry milter_functions[] = { +const static zend_function_entry milter_functions[] = { PHP_FE(smfi_setflags, NULL) PHP_FE(smfi_settimeout, NULL) PHP_FE(smfi_getsymval, NULL) diff --git a/sapi/nsapi/nsapi.c b/sapi/nsapi/nsapi.c index dac56dd711..392277783a 100644 --- a/sapi/nsapi/nsapi.c +++ b/sapi/nsapi/nsapi.c @@ -172,7 +172,7 @@ ZEND_DECLARE_MODULE_GLOBALS(nsapi) * * Every user visible function must have an entry in nsapi_functions[]. */ -zend_function_entry nsapi_functions[] = { +const zend_function_entry nsapi_functions[] = { PHP_FE(nsapi_virtual, NULL) /* Make subrequest */ PHP_FALIAS(virtual, nsapi_virtual, NULL) /* compatibility */ PHP_FE(nsapi_request_headers, NULL) /* get request headers */ |