X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=src%2Fphp_http_client_curl_user.c;h=d44f3dac815f1512ee9f9c51d66719b0733ffa87;hp=d345e27e96bc30b2d7c985038073a011b885b9e5;hb=01751b935246b4483a50cbfca959de221e353085;hpb=b41323e1817c50d062b27da798c7db35fa58212c diff --git a/src/php_http_client_curl_user.c b/src/php_http_client_curl_user.c index d345e27..d44f3da 100644 --- a/src/php_http_client_curl_user.c +++ b/src/php_http_client_curl_user.c @@ -15,7 +15,7 @@ #include "php_network.h" #include "zend_closures.h" -#if PHP_HTTP_HAVE_CURL +#if PHP_HTTP_HAVE_LIBCURL typedef struct php_http_client_curl_user_ev { php_stream *socket; @@ -59,7 +59,7 @@ static void php_http_client_curl_user_timer(CURLM *multi, long timeout_ms, void if (timeout_ms <= 0) { php_http_client_curl_loop(context->client, CURL_SOCKET_TIMEOUT, 0); - } else if (timeout_ms > 0) { + } else { zval args[1], *ztimeout = &args[0]; ZVAL_LONG(ztimeout, timeout_ms); @@ -316,7 +316,7 @@ PHP_MINIT_FUNCTION(http_client_curl_user) return SUCCESS; } -#endif /* PHP_HTTP_HAVE_CURL */ +#endif /* PHP_HTTP_HAVE_LIBCURL */ /* * Local variables: