- Fix ZTS build

This commit is contained in:
Felipe Pena 2009-07-26 23:44:59 +00:00
parent e2d044db40
commit 837732acc5

View File

@ -820,7 +820,7 @@ PHP_MINIT_FUNCTION(curl)
while (*p != NULL) {
/* Do not enable cURL "file" protocol and make sure cURL is always used when --with-curlwrappers is enabled */
if (strncasecmp(*p, "file", sizeof("file")-1) != 0) {
php_unregister_url_stream_wrapper(*p);
php_unregister_url_stream_wrapper(*p TSRMLS_CC);
php_register_url_stream_wrapper(*p, &php_curl_wrapper TSRMLS_CC);
}
(void) *p++;