summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJani Taskinen <jani@php.net>2009-05-26 08:03:07 +0000
committerJani Taskinen <jani@php.net>2009-05-26 08:03:07 +0000
commit7811bcb155d2ede7a715519e09a9220a8b452e2c (patch)
tree8e5b70a325d992381b88b6b617a7465620eb0499
parent86fed7fac76bd152da14740fcd1e5d371cc07d30 (diff)
downloadphp-git-7811bcb155d2ede7a715519e09a9220a8b452e2c.tar.gz
- Added note about omitted break
-rw-r--r--ext/zlib/zlib.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/zlib/zlib.c b/ext/zlib/zlib.c
index 3a3701e26e..4493db4cd9 100644
--- a/ext/zlib/zlib.c
+++ b/ext/zlib/zlib.c
@@ -1091,6 +1091,7 @@ static int php_zlib_output_compression_start(TSRMLS_D)
break;
case 1:
ZLIBG(output_compression) = 4096;
+ /* break omitted intentionally */
default:
/* ZLIBG(compression_coding) should be 0 when zlib compression hasn't been started yet.. */
if (ZLIBG(compression_coding) == 0) {