From 4185548984357df91311f30c8e43d95f33922576 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Sat, 11 Aug 2007 20:26:02 +0000 Subject: httpd: CGI Status: header fix --- networking/httpd.c | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) (limited to 'networking/httpd.c') 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) { -- cgit v1.2.3