Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 69098 invoked from network); 25 Mar 2008 11:41:44 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 25 Mar 2008 11:41:44 -0000 Received: (qmail 13514 invoked by uid 500); 25 Mar 2008 11:41:42 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 13415 invoked by uid 500); 25 Mar 2008 11:41:42 -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 13404 invoked by uid 500); 25 Mar 2008 11:41:42 -0000 Delivered-To: apmail-ws-axis2-cvs@ws.apache.org Received: (qmail 13401 invoked by uid 99); 25 Mar 2008 11:41:42 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 25 Mar 2008 04:41:42 -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.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 25 Mar 2008 11:41:11 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id AA3881A9832; Tue, 25 Mar 2008 04:41:22 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r640776 - in /webservices/axis2/trunk/c: include/axis2_http_transport.h src/core/transport/http/sender/http_sender.c Date: Tue, 25 Mar 2008 11:41:20 -0000 To: axis2-cvs@ws.apache.org From: senaka@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080325114122.AA3881A9832@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: senaka Date: Tue Mar 25 04:40:58 2008 New Revision: 640776 URL: http://svn.apache.org/viewvc?rev=640776&view=rev Log: Fixing invalid cast issue Modified: webservices/axis2/trunk/c/include/axis2_http_transport.h webservices/axis2/trunk/c/src/core/transport/http/sender/http_sender.c Modified: webservices/axis2/trunk/c/include/axis2_http_transport.h URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/include/axis2_http_transport.h?rev=640776&r1=640775&r2=640776&view=diff ============================================================================== --- webservices/axis2/trunk/c/include/axis2_http_transport.h (original) +++ webservices/axis2/trunk/c/include/axis2_http_transport.h Tue Mar 25 04:40:58 2008 @@ -973,6 +973,8 @@ #define AXIS2_ESC_DOUBLE_QUOTE '\"' +#define AXIS2_ESC_DOUBLE_QUOTE_STR "\"" + #define AXIS2_ESC_NULL '\0' #define AXIS2_CONTENT_TYPE_ACTION ";action=\"" Modified: webservices/axis2/trunk/c/src/core/transport/http/sender/http_sender.c URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/src/core/transport/http/sender/http_sender.c?rev=640776&r1=640775&r2=640776&view=diff ============================================================================== --- webservices/axis2/trunk/c/src/core/transport/http/sender/http_sender.c (original) +++ webservices/axis2/trunk/c/src/core/transport/http/sender/http_sender.c Tue Mar 25 04:40:58 2008 @@ -666,8 +666,7 @@ content_type = temp_content_type; temp_content_type = axutil_stracat (env, content_type, - (const axis2_char_t *) - AXIS2_ESC_DOUBLE_QUOTE); + AXIS2_ESC_DOUBLE_QUOTE_STR); AXIS2_FREE (env->allocator, content_type); content_type = temp_content_type; } @@ -715,8 +714,7 @@ content_type = temp_content_type; temp_content_type = axutil_stracat (env, content_type, - (const axis2_char_t *) - AXIS2_ESC_DOUBLE_QUOTE); + AXIS2_ESC_DOUBLE_QUOTE_STR); AXIS2_FREE (env->allocator, content_type); content_type = temp_content_type; } --------------------------------------------------------------------- To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org For additional commands, e-mail: axis-cvs-help@ws.apache.org