summaryrefslogtreecommitdiff
path: root/sapi/nsapi
diff options
context:
space:
mode:
authorUwe Schindler <thetaphi@php.net>2004-06-22 15:37:40 +0000
committerUwe Schindler <thetaphi@php.net>2004-06-22 15:37:40 +0000
commite276023d82fa8e1075ff443d70dbc5041e02dfd4 (patch)
tree6c98a41caac6662f152d31d015d44418d510654e /sapi/nsapi
parent4ea8f4b9f29c86fbe345e85f1d680f9bc9cb7350 (diff)
downloadphp-git-e276023d82fa8e1075ff443d70dbc5041e02dfd4.tar.gz
Fix bug #28878: php.ini values in php5_execute
Diffstat (limited to 'sapi/nsapi')
-rw-r--r--sapi/nsapi/nsapi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/nsapi/nsapi.c b/sapi/nsapi/nsapi.c
index 1855412262..69e4fe5dda 100644
--- a/sapi/nsapi/nsapi.c
+++ b/sapi/nsapi/nsapi.c
@@ -770,7 +770,7 @@ static void nsapi_php_ini_entries(NSLS_D TSRMLS_DC)
/* exclude standard entries given to "Service" which should not go into ini entries */
ok=1;
for (j=0; nsapi_exclude_from_ini_entries[j]; j++) {
- ok&=(!strcasecmp(entry->param->name, nsapi_exclude_from_ini_entries[j]));
+ ok&=(strcasecmp(entry->param->name, nsapi_exclude_from_ini_entries[j])!=0);
}
if (ok) {