aboutsummaryrefslogtreecommitdiff
path: root/networking/httpd.c
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2017-02-04 23:19:30 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2017-02-04 23:19:30 +0100
commit8cc1ab3c11538773389060005ba9c053fae0f848 (patch)
tree93c2ae05dd6177b2eed4fd374ca3fc45dd1e28f8 /networking/httpd.c
parent8762512fdb088acefb9f3ea5f7b1e1bf2d336ff3 (diff)
downloadbusybox-8cc1ab3c11538773389060005ba9c053fae0f848.tar.gz
httpd: use "Content-Length", not "-length"
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/httpd.c')
-rw-r--r--networking/httpd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/networking/httpd.c b/networking/httpd.c
index 8703fbd3d..e072f23c7 100644
--- a/networking/httpd.c
+++ b/networking/httpd.c
@@ -1147,7 +1147,7 @@ static void send_headers(int responseNum)
"Last-Modified: %s\r\n"
"%s %"OFF_FMT"u\r\n",
date_str,
- content_gzip ? "Transfer-length:" : "Content-length:",
+ content_gzip ? "Transfer-Length:" : "Content-Length:",
file_size
);
}
@@ -2276,14 +2276,14 @@ static void handle_incoming_and_exit(const len_and_sockaddr *fromAddr)
#if ENABLE_FEATURE_HTTPD_CGI || ENABLE_FEATURE_HTTPD_PROXY
/* Try and do our best to parse more lines */
- if ((STRNCASECMP(iobuf, "Content-length:") == 0)) {
+ if ((STRNCASECMP(iobuf, "Content-Length:") == 0)) {
/* extra read only for POST */
if (prequest != request_GET
# if ENABLE_FEATURE_HTTPD_CGI
&& prequest != request_HEAD
# endif
) {
- tptr = skip_whitespace(iobuf + sizeof("Content-length:") - 1);
+ tptr = skip_whitespace(iobuf + sizeof("Content-Length:") - 1);
if (!tptr[0])
send_headers_and_exit(HTTP_BAD_REQUEST);
/* not using strtoul: it ignores leading minus! */