summaryrefslogtreecommitdiff
path: root/sapi/pi3web/pi3web_sapi.c
diff options
context:
space:
mode:
authorHolger Zimmermann <holger@php.net>2003-06-01 20:28:49 +0000
committerHolger Zimmermann <holger@php.net>2003-06-01 20:28:49 +0000
commitef4ffaaf1ad2dd59b55e4493f979221f0d2ff94e (patch)
treecb843fc10e4911eb02b00cedf4edda4c3e04ed76 /sapi/pi3web/pi3web_sapi.c
parent0ecbdc55a1670f012380a1be65a0ca050219c383 (diff)
downloadphp-git-ef4ffaaf1ad2dd59b55e4493f979221f0d2ff94e.tar.gz
Removed increment of read_post_bytes because this is done within SAPI (SAPI.c).
Diffstat (limited to 'sapi/pi3web/pi3web_sapi.c')
-rw-r--r--sapi/pi3web/pi3web_sapi.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sapi/pi3web/pi3web_sapi.c b/sapi/pi3web/pi3web_sapi.c
index 3c223752ea..199a22691f 100644
--- a/sapi/pi3web/pi3web_sapi.c
+++ b/sapi/pi3web/pi3web_sapi.c
@@ -250,7 +250,8 @@ static int sapi_pi3web_read_post(char *buffer, uint count_bytes TSRMLS_DC)
}
total_read += cbRead;
}
- SG(read_post_bytes) += total_read;
+// removed after re-testing POST with Pi3Web 2.0.2
+// SG(read_post_bytes) += total_read;
return total_read;
}