From ec0bb29f312b0f825a44c059fa6a8e2d1cd708bb Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Thu, 20 Aug 2009 11:17:31 +0000 Subject: [PATCH 1/1] fix type --- http_request_api.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/http_request_api.c b/http_request_api.c index 904e3e4..817fa3a 100644 --- a/http_request_api.c +++ b/http_request_api.c @@ -642,7 +642,7 @@ PHP_HTTP_API STATUS _http_request_prepare(http_request *request, HashTable *opti } } #if HTTP_CURL_VERSION(7,19,4) - if ((zoption = http_request_option, request, options, "noproxy", IS_STRING))) { + if ((zoption = http_request_option(request, options, "noproxy", IS_STRING))) { HTTP_CURL_OPT(CURLOPT_NOPROXY, Z_STRVAL_P(zoption)); } #endif -- 2.30.2