derick Sat Sep 21 14:25:05 2002 EDT Modified files: /php4/ext/standard ftp_fopen_wrapper.c Log: - Fix ZTS build Index: php4/ext/standard/ftp_fopen_wrapper.c diff -u php4/ext/standard/ftp_fopen_wrapper.c:1.33 php4/ext/standard/ftp_fopen_wrapper.c:1.34 --- php4/ext/standard/ftp_fopen_wrapper.c:1.33 Thu Sep 12 17:52:09 2002 +++ php4/ext/standard/ftp_fopen_wrapper.c Sat Sep 21 14:25:04 2002 @@ -17,7 +17,7 @@ | Hartmut Holzgraefe <[EMAIL PROTECTED]> | +----------------------------------------------------------------------+ */ -/* $Id: ftp_fopen_wrapper.c,v 1.33 2002/09/12 21:52:09 sesser Exp $ */ +/* $Id: ftp_fopen_wrapper.c,v 1.34 2002/09/21 18:25:04 derick Exp $ */ #include "php.h" #include "php_globals.h" @@ -415,7 +415,7 @@ php_stream_notify_progress_init(context, 0, file_size); #if HAVE_OPENSSL_EXT - if (use_ssl_on_data && php_stream_sock_ssl_activate_with_method(datastream, 1, SSLv23_method(), reuseid) == FAILURE) { + if (use_ssl_on_data && php_stream_sock_ssl_activate_with_method(datastream, 1, +SSLv23_method(), reuseid TSRMLS_CC) == FAILURE) { php_stream_wrapper_log_error(wrapper, options TSRMLS_CC, "Unable to activate SSL mode"); php_stream_close(datastream); datastream = NULL;
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php