]> granicus.if.org Git - php/commitdiff
Fix incompatibility with Windows .NET (IIS 6)
authorZeev Suraski <zeev@php.net>
Sat, 22 Dec 2001 03:11:46 +0000 (03:11 +0000)
committerZeev Suraski <zeev@php.net>
Sat, 22 Dec 2001 03:11:46 +0000 (03:11 +0000)
May also improve stability under other Windows versions

sapi/isapi/php4isapi.c

index 0f768e1227421c6bf3427fe377ba1c161d0e0f2d..709fafcfc56d47ec6122d6240d9e17484cbfd181 100644 (file)
@@ -284,6 +284,7 @@ static int sapi_isapi_send_headers(sapi_headers_struct *sapi_headers TSRMLS_DC)
        header_info.cchStatus = strlen(header_info.pszStatus);
        header_info.pszHeader = combined_headers;
        header_info.cchHeader = total_length;
+       header_info.fKeepConn = FALSE;
        lpECB->dwHttpStatusCode = SG(sapi_headers).http_response_code;
 
        lpECB->ServerSupportFunction(lpECB->ConnID, HSE_REQ_SEND_RESPONSE_HEADER_EX, &header_info, NULL, NULL);