in PHP 3, so let's not make it case sensitive.
@Make the special Header("http/...") response be case insensitive like 3.0 (Rasmus)
/* Check the header for a few cases that we have special support for in SAPI */
if (header_line_len>=5
- && !memcmp(header_line, "HTTP/", 5)) {
+ && !strncasecmp(header_line, "HTTP/", 5)) {
/* filter out the response code */
SG(sapi_headers).http_response_code = sapi_extract_response_code(header_line);
SG(sapi_headers).http_status_line = header_line;