projects
/
oweals
/
busybox.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1c660b4
)
httpd: fix breakage (introduced by me)
author
Denis Vlasenko
<vda.linux@googlemail.com>
Mon, 5 Mar 2007 16:56:25 +0000
(16:56 -0000)
committer
Denis Vlasenko
<vda.linux@googlemail.com>
Mon, 5 Mar 2007 16:56:25 +0000
(16:56 -0000)
networking/httpd.c
patch
|
blob
|
history
diff --git
a/networking/httpd.c
b/networking/httpd.c
index 3524531e3fcfcc3bf68a5cabdbcce636c4b165e0..8cf73c2b48d533e60265dab5c4382d99b52de2c7 100644
(file)
--- 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.