From 40fb8176e6b292dfcc3348b1ebcf2b867a552635 Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Fri, 18 May 2001 16:12:06 +0000 Subject: [PATCH] Interesting, ISAPI thinks a 0 result is cool. Already patched in 1.3.20. [Jessie Oberreuter ] git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89154 13f79535-47bb-0310-9956-ffa450edef68 --- modules/arch/win32/mod_isapi.c | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/arch/win32/mod_isapi.c b/modules/arch/win32/mod_isapi.c index 5753afbeaf..7ff9a89e4c 100644 --- a/modules/arch/win32/mod_isapi.c +++ b/modules/arch/win32/mod_isapi.c @@ -483,6 +483,7 @@ apr_status_t isapi_handler (request_rec *r) "ISAPI %s: %s", r->filename, cid->ecb->lpszLogData); switch(rv) { + case 0: /* Strange, but MS isapi accepts this as success */ case HSE_STATUS_SUCCESS: case HSE_STATUS_SUCCESS_AND_KEEP_CONN: /* Ignore the keepalive stuff; Apache handles it just fine without -- 2.40.0