httpd: fix breakage (introduced by me)
authorDenis Vlasenko <vda.linux@googlemail.com>
Mon, 5 Mar 2007 16:56:25 +0000 (16:56 -0000)
committerDenis Vlasenko <vda.linux@googlemail.com>
Mon, 5 Mar 2007 16:56:25 +0000 (16:56 -0000)
networking/httpd.c

index 3524531..8cf73c2 100644 (file)
@@ -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.