@@ -330,7 +330,7 @@ static inline int php_openssl_setup_crypto(php_stream *stream,
330
330
break ;
331
331
case STREAM_CRYPTO_METHOD_SSLv2_CLIENT :
332
332
#ifdef OPENSSL_NO_SSL2
333
- php_error_docref (NULL TSRMLS_CC , E_WARNING , "SSLv2 support is not compiled into the openSSL library PHP is linked against" );
333
+ php_error_docref (NULL TSRMLS_CC , E_WARNING , "SSLv2 support is not compiled into the OpenSSL library PHP is linked against" );
334
334
return -1 ;
335
335
#else
336
336
sslsock -> is_client = 1 ;
@@ -355,7 +355,7 @@ static inline int php_openssl_setup_crypto(php_stream *stream,
355
355
break ;
356
356
case STREAM_CRYPTO_METHOD_SSLv2_SERVER :
357
357
#ifdef OPENSSL_NO_SSL2
358
- php_error_docref (NULL TSRMLS_CC , E_WARNING , "SSLv2 support is not compiled into the openSSL library PHP is linked against" );
358
+ php_error_docref (NULL TSRMLS_CC , E_WARNING , "SSLv2 support is not compiled into the OpenSSL library PHP is linked against" );
359
359
return -1 ;
360
360
#else
361
361
sslsock -> is_client = 0 ;
@@ -923,7 +923,7 @@ php_stream *php_openssl_ssl_socket_factory(const char *proto, long protolen,
923
923
sslsock -> method = STREAM_CRYPTO_METHOD_SSLv23_CLIENT ;
924
924
} else if (strncmp (proto , "sslv2" , protolen ) == 0 ) {
925
925
#ifdef OPENSSL_NO_SSL2
926
- php_error_docref (NULL TSRMLS_CC , E_WARNING , "SSLv2 support is not compiled into the openSSL library PHP is linked against" );
926
+ php_error_docref (NULL TSRMLS_CC , E_WARNING , "SSLv2 support is not compiled into the OpenSSL library PHP is linked against" );
927
927
return NULL ;
928
928
#else
929
929
sslsock -> enable_on_connect = 1 ;
0 commit comments