From: Ilia Alshanetsky Date: Wed, 3 Dec 2003 15:50:27 +0000 (+0000) Subject: Fixed compiler warning due to unused variables. X-Git-Tag: php-5.0.0b3RC1~380 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=22142c392cbd09be200eacc3b678831471f49773;p=php Fixed compiler warning due to unused variables. --- diff --git a/ext/openssl/xp_ssl.c b/ext/openssl/xp_ssl.c index 9a5732583e..66262a3f4d 100644 --- a/ext/openssl/xp_ssl.c +++ b/ext/openssl/xp_ssl.c @@ -196,10 +196,11 @@ static size_t php_openssl_sockop_read(php_stream *stream, char *buf, size_t coun static int php_openssl_sockop_close(php_stream *stream, int close_handle TSRMLS_DC) { php_openssl_netstream_data_t *sslsock = (php_openssl_netstream_data_t*)stream->abstract; +#ifdef PHP_WIN32 fd_set wrfds, efds; int n; struct timeval timeout; - +#endif if (close_handle) { if (sslsock->ssl_active) { SSL_shutdown(sslsock->ssl_handle);