diff options
-rw-r--r-- | networking/httpd.c | 16 |
1 files changed, 7 insertions, 9 deletions
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, | |||
1287 | buf_count += count; | 1287 | buf_count += count; |
1288 | count = 0; | 1288 | count = 0; |
1289 | /* "Status" header format is: "Status: 302 Redirected\r\n" */ | 1289 | /* "Status" header format is: "Status: 302 Redirected\r\n" */ |
1290 | if (buf_count >= 8) { | 1290 | if (buf_count >= 8 && memcmp(rbuf, "Status: ", 8) == 0) { |
1291 | if (memcmp(rbuf, "Status: ", 8) == 0) { | 1291 | /* send "HTTP/1.0 " */ |
1292 | /* send "HTTP/1.0 " */ | 1292 | if (full_write(s, HTTP_200, 9) != 9) |
1293 | if (full_write(s, HTTP_200, 9) != 9) | 1293 | break; |
1294 | break; | 1294 | rbuf += 8; /* skip "Status: " */ |
1295 | rbuf += 8; /* skip "Status: " */ | 1295 | count = buf_count - 8; |
1296 | count -= 8; | 1296 | buf_count = -1; /* buffering off */ |
1297 | buf_count = -1; /* buffering off */ | ||
1298 | } | ||
1299 | } else if (buf_count >= 4) { | 1297 | } else if (buf_count >= 4) { |
1300 | /* Did CGI add "HTTP"? */ | 1298 | /* Did CGI add "HTTP"? */ |
1301 | if (memcmp(rbuf, HTTP_200, 4) != 0) { | 1299 | if (memcmp(rbuf, HTTP_200, 4) != 0) { |