summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2014-10-27 11:19:07 +0100
committerJo-Philipp Wich <jow@openwrt.org>2014-10-27 11:19:07 +0100
commit5d1e339988c1e53ee7ed6c0c5592fdb9410a4a42 (patch)
treee720663da03fdb6d3207a87587bbef4f3b99695f
parentd09bf11d572207b79286cdb5e6253278ebec147c (diff)
downloaduhttpd2-5d1e339988c1e53ee7ed6c0c5592fdb9410a4a42.tar.gz
file: do not emit Content-Length header for 304/412 responses
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
-rw-r--r--file.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/file.c b/file.c
index 055035e..6b3bb82 100644
--- a/file.c
+++ b/file.c
@@ -567,7 +567,6 @@ static void uh_file_data(struct client *cl, struct path_info *pi, int fd)
!uh_file_if_range(cl, &pi->stat) ||
!uh_file_if_unmodified_since(cl, &pi->stat) ||
!uh_file_if_none_match(cl, &pi->stat)) {
- ustream_printf(cl->us, "Content-Length: 0\r\n");
ustream_printf(cl->us, "\r\n");
uh_request_done(cl);
close(fd);