fix typo; wtf? RELEASE_2_0_3
authorMichael Wallner <mike@php.net>
Tue, 10 Dec 2013 08:54:34 +0000 (09:54 +0100)
committerMichael Wallner <mike@php.net>
Tue, 10 Dec 2013 08:54:34 +0000 (09:54 +0100)
package.xml
php_http.h
php_http_client_curl.c

index 25d7a525805613482accb8f223809f3810370b9a..9bcb81f42e9b08045b20036b11a2ff67fc4f90f3 100644 (file)
@@ -39,7 +39,7 @@ v2: http://dev.iworks.at/ext-http/lcov/ext/http/
  </lead>
  <date>2013-12-10</date>
  <version>
-  <release>2.0.2</release>
+  <release>2.0.3</release>
   <api>2.0.0</api>
  </version>
  <stability>
@@ -48,7 +48,7 @@ v2: http://dev.iworks.at/ext-http/lcov/ext/http/
  </stability>
  <license>BSD, revised</license>
  <notes><![CDATA[
-* Fixed bug #66250 (shutdown crash as shared extension)
+* Fixed typo
 ]]></notes>
  <contents>
   <dir name="/">
index ae89427d2e5f19d08a664dbaeb8227b5da810ac6..53edbdf3b2a84a6e976f122fa52eea4ceded2e90 100644 (file)
@@ -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
index 43396255994dc87fbdc8b729bca30435198579f4..77c6123e434bbc0b9a3d941f531d48f1474e8a27 100644 (file)
@@ -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);