From b18b6f36918d36fbcb925bf13f5cebcb0b4e3a96 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Fri, 30 Aug 2002 13:26:41 +0000 Subject: [PATCH] Bug fix: dont cache connection if proxy setting have changed --- ext/yaz/php_yaz.c | 1 + 1 file changed, 1 insertion(+) 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) && -- 2.50.1