blob: c9e0519485ff0544fb861c7443e3cfcd85fa26ce (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
--- mod_blowchunks-1.3.c.orig Sat Jun 22 22:44:01 2002
+++ mod_blowchunks-1.3.c Sat Jun 22 22:45:18 2002
@@ -56,8 +56,10 @@
ap_table_do(blowchunks_check_one_header,&found,r->headers_in,
"Transfer-Encoding",NULL);
if (found==TRUE) {
+#ifdef LOG_BLOWCHUNK
ap_log_rerror(APLOG_MARK, APLOG_NOERRNO|APLOG_ERR, r,
"Transfer-Encoding: chunked - denied and logged");
+#endif
return HTTP_BAD_REQUEST;
}
return DECLINED;
|