aboutsummaryrefslogtreecommitdiff
path: root/networking
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-03-05 16:56:25 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-03-05 16:56:25 +0000
commitec77ba128ad8889593f5534dcfdd14645e07f4d3 (patch)
treed1d4a5ddf423524014444eb4f0255d24966f6d51 /networking
parent1c660b4bd2c303fcb829bc93143fc454693afab4 (diff)
downloadbusybox-ec77ba128ad8889593f5534dcfdd14645e07f4d3.tar.gz
httpd: fix breakage (introduced by me)
Diffstat (limited to 'networking')
-rw-r--r--networking/httpd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/httpd.c b/networking/httpd.c
index 3524531e3..8cf73c2b4 100644
--- a/networking/httpd.c
+++ b/networking/httpd.c
@@ -1215,7 +1215,7 @@ static int sendCgi(const char *url,
/* Are we still buffering CGI output? */
if (buf_count >= 0) {
- static const char HTTP_200[] = "HTTP/1.0 200 OK\r\n\r\n";
+ static const char HTTP_200[] = "HTTP/1.0 200 OK\r\n";
/* Must use safe_read, not full_read, because
* CGI may output a few first bytes and then wait
* for POSTDATA without closing stdout.