From: Michael Wallner Date: Tue, 10 Dec 2013 08:54:34 +0000 (+0100) Subject: fix typo; wtf? X-Git-Tag: RELEASE_2_0_3 X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=commitdiff_plain;h=332d72ecbd00cc25b97932b8d8facf9b21dbc55e fix typo; wtf? --- diff --git a/package.xml b/package.xml index 25d7a52..9bcb81f 100644 --- a/package.xml +++ b/package.xml @@ -39,7 +39,7 @@ v2: http://dev.iworks.at/ext-http/lcov/ext/http/ 2013-12-10 - 2.0.2 + 2.0.3 2.0.0 @@ -48,7 +48,7 @@ v2: http://dev.iworks.at/ext-http/lcov/ext/http/ BSD, revised diff --git a/php_http.h b/php_http.h index ae89427..53edbdf 100644 --- a/php_http.h +++ b/php_http.h @@ -13,7 +13,7 @@ #ifndef PHP_EXT_HTTP_H #define PHP_EXT_HTTP_H -#define PHP_PECL_HTTP_VERSION "2.0.2" +#define PHP_PECL_HTTP_VERSION "2.0.3" extern zend_module_entry http_module_entry; #define phpext_http_ptr &http_module_entry diff --git a/php_http_client_curl.c b/php_http_client_curl.c index 4339625..77c6123 100644 --- a/php_http_client_curl.c +++ b/php_http_client_curl.c @@ -1980,8 +1980,8 @@ PHP_MINIT_FUNCTION(http_client_curl) PHP_MSHUTDOWN_FUNCTION(http_client_curl) { - php_persistent_handles_cleanup(ZEND_STRL("http\\Client\\Curl"), NULL, 0 TSRMLS_CC); - php_persistent_handles_cleanup(ZEND_STRL("http\\Client\\Curl\\Request"), NULL, 0 TSRMLS_CC); + php_persistent_handle_cleanup(ZEND_STRL("http\\Client\\Curl"), NULL, 0 TSRMLS_CC); + php_persistent_handle_cleanup(ZEND_STRL("http\\Client\\Curl\\Request"), NULL, 0 TSRMLS_CC); php_http_options_dtor(&php_http_curle_options);