svn commit: trunk/busybox/networking
vda at busybox.net
vda at busybox.net
Mon Mar 5 16:56:26 UTC 2007
Author: vda
Date: 2007-03-05 08:56:25 -0800 (Mon, 05 Mar 2007)
New Revision: 18008
Log:
httpd: fix breakage (introduced by me)
Modified:
trunk/busybox/networking/httpd.c
Changeset:
Modified: trunk/busybox/networking/httpd.c
===================================================================
--- trunk/busybox/networking/httpd.c 2007-03-05 11:06:58 UTC (rev 18007)
+++ trunk/busybox/networking/httpd.c 2007-03-05 16:56:25 UTC (rev 18008)
@@ -1215,7 +1215,7 @@
/* 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.
More information about the busybox-cvs
mailing list