diff options
author | Nuno Lopes <nlopess@php.net> | 2006-09-06 11:54:29 +0000 |
---|---|---|
committer | Nuno Lopes <nlopess@php.net> | 2006-09-06 11:54:29 +0000 |
commit | 47713b1eb700e87f3f7473686f313e2020246976 (patch) | |
tree | 174344bae48a9024741793903e1a06f8982d4f33 /sapi/apache_hooks | |
parent | b9351ab4b1f81e8897e2eca032523af82bcdacb2 (diff) | |
download | php-git-47713b1eb700e87f3f7473686f313e2020246976.tar.gz |
more int->zend_bool conversions
Diffstat (limited to 'sapi/apache_hooks')
-rw-r--r-- | sapi/apache_hooks/php_apache.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sapi/apache_hooks/php_apache.c b/sapi/apache_hooks/php_apache.c index dff34bdad7..57f8b4e1d0 100644 --- a/sapi/apache_hooks/php_apache.c +++ b/sapi/apache_hooks/php_apache.c @@ -1796,7 +1796,8 @@ PHP_FUNCTION(apache_response_headers) Set an Apache subprocess_env variable */ PHP_FUNCTION(apache_setenv) { - int var_len, val_len, top=0; + int var_len, val_len; + zend_bool top=0; char *var = NULL, *val = NULL; request_rec *r = (request_rec *) SG(server_context); |