iliaa Thu Feb 27 18:50:54 2003 EDT
Modified files:
/php4/ext/openssl xp_ssl.c
Log:
fixed compiler warnings.
Index: php4/ext/openssl/xp_ssl.c
diff -u php4/ext/openssl/xp_ssl.c:1.1 php4/ext/openssl/xp_ssl.c:1.2
--- php4/ext/openssl/xp_ssl.c:1.1 Thu Feb 27 12:43:36 2003
+++ php4/ext/openssl/xp_ssl.c Thu Feb 27 18:50:54 2003
@@ -16,7 +16,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: xp_ssl.c,v 1.1 2003/02/27 17:43:36 wez Exp $ */
+/* $Id: xp_ssl.c,v 1.2 2003/02/27 23:50:54 iliaa Exp $ */
#include "php.h"
#include "ext/standard/file.h"
@@ -372,11 +372,14 @@
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 @@
}
}
return PHP_STREAM_OPTION_RETURN_OK;
+ break;
default:
/* fall through */
+ break;
}
}
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php