aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-03-05 16:56:25 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-03-05 16:56:25 +0000
commitda423e4a0a1a66f76242b76a045260ddd50db909 (patch)
treed1d4a5ddf423524014444eb4f0255d24966f6d51
parent88dcc573bed32d0f4e5dd7bd2d4547ebcad05a37 (diff)
downloadbusybox-w32-da423e4a0a1a66f76242b76a045260ddd50db909.tar.gz
busybox-w32-da423e4a0a1a66f76242b76a045260ddd50db909.tar.bz2
busybox-w32-da423e4a0a1a66f76242b76a045260ddd50db909.zip
httpd: fix breakage (introduced by me)
git-svn-id: svn://busybox.net/trunk/busybox@18008 69ca8d6d-28ef-0310-b511-8ec308f3f277
-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,
1215 1215
1216 /* Are we still buffering CGI output? */ 1216 /* Are we still buffering CGI output? */
1217 if (buf_count >= 0) { 1217 if (buf_count >= 0) {
1218 static const char HTTP_200[] = "HTTP/1.0 200 OK\r\n\r\n"; 1218 static const char HTTP_200[] = "HTTP/1.0 200 OK\r\n";
1219 /* Must use safe_read, not full_read, because 1219 /* Must use safe_read, not full_read, because
1220 * CGI may output a few first bytes and then wait 1220 * CGI may output a few first bytes and then wait
1221 * for POSTDATA without closing stdout. 1221 * for POSTDATA without closing stdout.