From: Ilia Alshanetsky Date: Thu, 27 Feb 2003 23:50:55 +0000 (+0000) Subject: fixed compiler warnings. X-Git-Tag: RELEASE_0_5~706 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=57eabeea2956608ff2ad244e64b5523d2b58d47d;p=php fixed compiler warnings. --- diff --git a/ext/openssl/xp_ssl.c b/ext/openssl/xp_ssl.c index eb449274d9..b22d1f0b5e 100644 --- a/ext/openssl/xp_ssl.c +++ b/ext/openssl/xp_ssl.c @@ -372,11 +372,14 @@ static int php_openssl_sockop_set_option(php_stream *stream, int option, int val case STREAM_XPORT_CRYPTO_OP_SETUP: cparam->outputs.returncode = php_openssl_setup_crypto(stream, sslsock, cparam TSRMLS_CC); return PHP_STREAM_OPTION_RETURN_OK; + break; case STREAM_XPORT_CRYPTO_OP_ENABLE: cparam->outputs.returncode = php_openssl_enable_crypto(stream, sslsock, cparam TSRMLS_CC); return PHP_STREAM_OPTION_RETURN_OK; + break; default: /* fall through */ + break; } break; @@ -398,8 +401,10 @@ static int php_openssl_sockop_set_option(php_stream *stream, int option, int val } } return PHP_STREAM_OPTION_RETURN_OK; + break; default: /* fall through */ + break; } }