Return-Path: Delivered-To: apmail-tomcat-dev-archive@www.apache.org Received: (qmail 93486 invoked from network); 1 Oct 2008 17:04:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 1 Oct 2008 17:04:29 -0000 Received: (qmail 46140 invoked by uid 500); 1 Oct 2008 17:04:25 -0000 Delivered-To: apmail-tomcat-dev-archive@tomcat.apache.org Received: (qmail 45852 invoked by uid 500); 1 Oct 2008 17:04:24 -0000 Mailing-List: contact dev-help@tomcat.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Tomcat Developers List" Delivered-To: mailing list dev@tomcat.apache.org Received: (qmail 45841 invoked by uid 99); 1 Oct 2008 17:04:24 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Oct 2008 10:04:24 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 01 Oct 2008 17:03:30 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id E914D238889D; Wed, 1 Oct 2008 10:04:04 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r700839 - /tomcat/connectors/trunk/jk/native/iis/jk_isapi_plugin.c Date: Wed, 01 Oct 2008 17:04:04 -0000 To: dev@tomcat.apache.org From: markt@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20081001170404.E914D238889D@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: markt Date: Wed Oct 1 10:04:04 2008 New Revision: 700839 URL: http://svn.apache.org/viewvc?rev=700839&view=rev Log: Fix https://issues.apache.org/bugzilla/show_bug.cgi?id=45131 Error text for 503 shown for a 500 error. Modified: tomcat/connectors/trunk/jk/native/iis/jk_isapi_plugin.c Modified: tomcat/connectors/trunk/jk/native/iis/jk_isapi_plugin.c URL: http://svn.apache.org/viewvc/tomcat/connectors/trunk/jk/native/iis/jk_isapi_plugin.c?rev=700839&r1=700838&r2=700839&view=diff ============================================================================== --- tomcat/connectors/trunk/jk/native/iis/jk_isapi_plugin.c (original) +++ tomcat/connectors/trunk/jk/native/iis/jk_isapi_plugin.c Wed Oct 1 10:04:04 2008 @@ -555,7 +555,7 @@ (LPDWORD)CONTENT_TYPE); len = (DWORD)(sizeof(HTML_ERROR_500) - 1); lpEcb->WriteClient(lpEcb->ConnID, - HTML_ERROR_503, &len, 0); + HTML_ERROR_500, &len, 0); } else if (err == 503) { lpEcb->ServerSupportFunction(lpEcb->ConnID, --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org For additional commands, e-mail: dev-help@tomcat.apache.org