From e276023d82fa8e1075ff443d70dbc5041e02dfd4 Mon Sep 17 00:00:00 2001 From: Uwe Schindler Date: Tue, 22 Jun 2004 15:37:40 +0000 Subject: [PATCH] Fix bug #28878: php.ini values in php5_execute --- sapi/nsapi/nsapi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.50.1