Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 71854 invoked from network); 9 Jun 2006 05:36:46 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 9 Jun 2006 05:36:46 -0000 Received: (qmail 41832 invoked by uid 500); 9 Jun 2006 05:36:45 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 41724 invoked by uid 500); 9 Jun 2006 05:36:44 -0000 Mailing-List: contact axis-cvs-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-cvs@ws.apache.org Received: (qmail 41713 invoked by uid 500); 9 Jun 2006 05:36:44 -0000 Delivered-To: apmail-ws-axis2-cvs@ws.apache.org Received: (qmail 41710 invoked by uid 99); 9 Jun 2006 05:36:44 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jun 2006 22:36:44 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [140.211.166.113] (HELO eris.apache.org) (140.211.166.113) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 08 Jun 2006 22:36:43 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id 857741A983A; Thu, 8 Jun 2006 22:36:23 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r412938 - /webservices/axis2/trunk/c/modules/core/phaseresolver/phase_resolver.c Date: Fri, 09 Jun 2006 05:36:23 -0000 To: axis2-cvs@ws.apache.org From: samisa@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20060609053623.857741A983A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: samisa Date: Thu Jun 8 22:36:22 2006 New Revision: 412938 URL: http://svn.apache.org/viewvc?rev=412938&view=rev Log: Fixed the double engagement in case of globly engaging a module Modified: webservices/axis2/trunk/c/modules/core/phaseresolver/phase_resolver.c Modified: webservices/axis2/trunk/c/modules/core/phaseresolver/phase_resolver.c URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/phaseresolver/phase_resolver.c?rev=412938&r1=412937&r2=412938&view=diff ============================================================================== --- webservices/axis2/trunk/c/modules/core/phaseresolver/phase_resolver.c (original) +++ webservices/axis2/trunk/c/modules/core/phaseresolver/phase_resolver.c Thu Jun 8 22:36:22 2006 @@ -1274,18 +1274,18 @@ { return AXIS2_FAILURE; } - /*if ((0 != AXIS2_STRCMP(AXIS2_PHASE_TRANSPORTIN, phase_name)) && + if ((0 != AXIS2_STRCMP(AXIS2_PHASE_TRANSPORTIN, phase_name)) && (0 != AXIS2_STRCMP(AXIS2_PHASE_DISPATCH, phase_name)) && (0 != AXIS2_STRCMP(AXIS2_PHASE_POST_DISPATCH, phase_name)) && (0 != AXIS2_STRCMP(AXIS2_PHASE_PRE_DISPATCH, phase_name))) - {*/ + { status = AXIS2_PHASE_HOLDER_ADD_HANDLER(resolver_impl-> phase_holder, env, metadata); /* if(AXIS2_SUCCESS != status) { return status; - } - }*/ + }*/ + } } } } --------------------------------------------------------------------- To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org For additional commands, e-mail: axis-cvs-help@ws.apache.org