From: Denis Vlasenko Date: Sat, 11 Aug 2007 20:26:02 +0000 (-0000) Subject: httpd: CGI Status: header fix X-Git-Tag: android-x86-2.2~2670 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=4185548984357df91311f30c8e43d95f33922576;p=android-x86%2Fexternal-busybox.git httpd: CGI Status: header fix --- diff --git a/networking/httpd.c b/networking/httpd.c index 2f76828c6..fb3129f0b 100644 --- a/networking/httpd.c +++ b/networking/httpd.c @@ -1287,15 +1287,13 @@ static int sendCgi(const char *url, buf_count += count; count = 0; /* "Status" header format is: "Status: 302 Redirected\r\n" */ - if (buf_count >= 8) { - if (memcmp(rbuf, "Status: ", 8) == 0) { - /* send "HTTP/1.0 " */ - if (full_write(s, HTTP_200, 9) != 9) - break; - rbuf += 8; /* skip "Status: " */ - count -= 8; - buf_count = -1; /* buffering off */ - } + if (buf_count >= 8 && memcmp(rbuf, "Status: ", 8) == 0) { + /* send "HTTP/1.0 " */ + if (full_write(s, HTTP_200, 9) != 9) + break; + rbuf += 8; /* skip "Status: " */ + count = buf_count - 8; + buf_count = -1; /* buffering off */ } else if (buf_count >= 4) { /* Did CGI add "HTTP"? */ if (memcmp(rbuf, HTTP_200, 4) != 0) {