X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=http.c;h=528f8bad300a77dac1dfaaaa6c5fbf19abc835fe;hp=700fa9e33bc6923624bb573d811fe356fcd3300d;hb=5efb94c93bc4c1d4873706958962acc4313477f3;hpb=36fa8b05be7aaf8e7f9e503c3e82733022500c03 diff --git a/http.c b/http.c index 700fa9e..528f8ba 100644 --- a/http.c +++ b/http.c @@ -250,12 +250,6 @@ PHP_INI_BEGIN() PHP_INI_END() /* }}} */ -/* {{{ SSL */ -#ifdef HTTP_NEED_SSL - -#endif -/* }}} */ - /* {{{ PHP_MINIT_FUNCTION */ PHP_MINIT_FUNCTION(http) { @@ -326,8 +320,7 @@ PHP_RSHUTDOWN_FUNCTION(http) int i, c = zend_hash_num_elements(&HTTP_G(request).methods.custom); for (i = 0; i < c; ++i) { - zend_printf("RSHUTDOWN: unregistering %d (%d)\n", i, - http_request_method_unregister(HTTP_MAX_REQUEST_METHOD + i)); + http_request_method_unregister(HTTP_MAX_REQUEST_METHOD + i); } #endif http_globals_free(HTTP_GLOBALS);