diff options
author | Felipe Pena <felipe@php.net> | 2010-04-23 13:32:03 +0000 |
---|---|---|
committer | Felipe Pena <felipe@php.net> | 2010-04-23 13:32:03 +0000 |
commit | a5142d18cb1529bcc3711ab5e2f9dab2aaaf254b (patch) | |
tree | c18862c095b75e7dba7667d18d9e5751acdcb1fc /ext/openssl/xp_ssl.c | |
parent | e86710ce11592750d59f995fa86c3eddafec2473 (diff) | |
download | php-git-a5142d18cb1529bcc3711ab5e2f9dab2aaaf254b.tar.gz |
- Fixed compiler warnings
Diffstat (limited to 'ext/openssl/xp_ssl.c')
-rw-r--r-- | ext/openssl/xp_ssl.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/openssl/xp_ssl.c b/ext/openssl/xp_ssl.c index 187475340b..f1a4eb7e09 100644 --- a/ext/openssl/xp_ssl.c +++ b/ext/openssl/xp_ssl.c @@ -586,6 +586,8 @@ static inline int php_openssl_tcp_sockop_accept(php_stream *stream, php_openssl_ case STREAM_CRYPTO_METHOD_TLS_CLIENT: sock->method = STREAM_CRYPTO_METHOD_TLS_SERVER; break; + default: + break; } clisockdata->method = sock->method; |