From: Adam Dickmeiss Date: Fri, 30 Aug 2002 13:26:41 +0000 (+0000) Subject: Bug fix: dont cache connection if proxy setting have changed X-Git-Tag: RELEASE_0_91~173 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b18b6f36918d36fbcb925bf13f5cebcb0b4e3a96;p=php Bug fix: dont cache connection if proxy setting have changed --- diff --git a/ext/yaz/php_yaz.c b/ext/yaz/php_yaz.c index 78f6f4e8a1..4f2c4bb5a3 100644 --- a/ext/yaz/php_yaz.c +++ b/ext/yaz/php_yaz.c @@ -1273,6 +1273,7 @@ PHP_FUNCTION(yaz_connect) #if USE_ZOOM if (persistent && as && !as->in_use && !strcmp_null(option_get(as, "host"), zurl_str) && + !strcmp_null(option_get(as, "proxy"), proxy_str) && !strcmp_null(option_get(as, "user"), user_str) && !strcmp_null(option_get(as, "group"), group_str) && !strcmp_null(option_get(as, "pass"), pass_str) &&