Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 4685 invoked from network); 3 Feb 2006 06:56:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 3 Feb 2006 06:56:42 -0000 Received: (qmail 17853 invoked by uid 500); 3 Feb 2006 06:56:41 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 17622 invoked by uid 500); 3 Feb 2006 06:56:40 -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 17611 invoked by uid 500); 3 Feb 2006 06:56:40 -0000 Delivered-To: apmail-ws-axis2-cvs@ws.apache.org Received: (qmail 17608 invoked by uid 99); 3 Feb 2006 06:56:40 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Feb 2006 22:56:40 -0800 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Thu, 02 Feb 2006 22:56:40 -0800 Received: (qmail 4392 invoked by uid 65534); 3 Feb 2006 06:56:19 -0000 Message-ID: <20060203065619.4391.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r374590 - /webservices/axis2/trunk/c/modules/core/deployment/conf_init.c Date: Fri, 03 Feb 2006 06:56:19 -0000 To: axis2-cvs@ws.apache.org From: sahan@apache.org X-Mailer: svnmailer-1.0.5 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: sahan Date: Thu Feb 2 22:56:15 2006 New Revision: 374590 URL: http://svn.apache.org/viewcvs?rev=374590&view=rev Log: Fixed a bug in transports init Modified: webservices/axis2/trunk/c/modules/core/deployment/conf_init.c Modified: webservices/axis2/trunk/c/modules/core/deployment/conf_init.c URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/deployment/conf_init.c?rev=374590&r1=374589&r2=374590&view=diff ============================================================================== --- webservices/axis2/trunk/c/modules/core/deployment/conf_init.c (original) +++ webservices/axis2/trunk/c/modules/core/deployment/conf_init.c Thu Feb 2 22:56:15 2006 @@ -157,7 +157,7 @@ for (hi = axis2_hash_first (transport_map, env); hi; hi = axis2_hash_next (env, hi)) { - axis2_hash_this (hi, NULL, NULL, transport); + axis2_hash_this (hi, NULL, NULL, &transport); if (transport) { axis2_transport_in_desc_t *transport_in = (axis2_transport_in_desc_t*)transport; @@ -179,7 +179,7 @@ for (hi = axis2_hash_first (transport_map, env); hi; hi = axis2_hash_next (env, hi)) { - axis2_hash_this (hi, NULL, NULL, transport); + axis2_hash_this (hi, NULL, NULL, &transport); if (transport) { axis2_transport_out_desc_t *transport_out = (axis2_transport_out_desc_t*)transport;