summaryrefslogtreecommitdiff
path: root/sapi/apache
diff options
context:
space:
mode:
authorNuno Lopes <nlopess@php.net>2006-09-06 11:54:29 +0000
committerNuno Lopes <nlopess@php.net>2006-09-06 11:54:29 +0000
commit47713b1eb700e87f3f7473686f313e2020246976 (patch)
tree174344bae48a9024741793903e1a06f8982d4f33 /sapi/apache
parentb9351ab4b1f81e8897e2eca032523af82bcdacb2 (diff)
downloadphp-git-47713b1eb700e87f3f7473686f313e2020246976.tar.gz
more int->zend_bool conversions
Diffstat (limited to 'sapi/apache')
-rw-r--r--sapi/apache/php_apache.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sapi/apache/php_apache.c b/sapi/apache/php_apache.c
index dd7abe2bb6..9db0a94898 100644
--- a/sapi/apache/php_apache.c
+++ b/sapi/apache/php_apache.c
@@ -394,7 +394,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);