You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by ka...@apache.org on 2007/03/22 06:22:14 UTC

svn commit: r521121 - in /webservices/axis2/trunk/c/rampart/src: handlers/rampart_out_handler.c omxmlsec/c14n/c14n.c

Author: kaushalye
Date: Wed Mar 21 22:22:14 2007
New Revision: 521121

URL: http://svn.apache.org/viewvc?view=rev&rev=521121
Log:
Fixning bbuild break in C14N

Modified:
    webservices/axis2/trunk/c/rampart/src/handlers/rampart_out_handler.c
    webservices/axis2/trunk/c/rampart/src/omxmlsec/c14n/c14n.c

Modified: webservices/axis2/trunk/c/rampart/src/handlers/rampart_out_handler.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/rampart/src/handlers/rampart_out_handler.c?view=diff&rev=521121&r1=521120&r2=521121
==============================================================================
--- webservices/axis2/trunk/c/rampart/src/handlers/rampart_out_handler.c (original)
+++ webservices/axis2/trunk/c/rampart/src/handlers/rampart_out_handler.c Wed Mar 21 22:22:14 2007
@@ -111,8 +111,8 @@
         soap_header_ele = (axiom_element_t *)AXIOM_NODE_GET_DATA_ELEMENT(soap_header_node,env);
 
         /*since rampart out_handler is a global handler we should
-        first check whether the rampart module is engaged.If not engaged we
-        should not process the message but return success.*/
+        first check whether the rampart module is engaged.If not we
+        should not process the message and return success.*/
 
         /*This method is implemented in rampart_handler utils.*/
         if(!rampart_is_rampart_engaged(env,msg_ctx))

Modified: webservices/axis2/trunk/c/rampart/src/omxmlsec/c14n/c14n.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/rampart/src/omxmlsec/c14n/c14n.c?view=diff&rev=521121&r1=521120&r2=521121
==============================================================================
--- webservices/axis2/trunk/c/rampart/src/omxmlsec/c14n/c14n.c (original)
+++ webservices/axis2/trunk/c/rampart/src/omxmlsec/c14n/c14n.c Wed Mar 21 22:22:14 2007
@@ -709,7 +709,7 @@
     
     if (text)
     {
-        axis2_char_t *textval = axiom_text_get_value(text, ctx->env);
+        axis2_char_t *textval = (axis2_char_t*)axiom_text_get_value(text, ctx->env);
         textval = c14n_normalize_text(textval, ctx);
         c14n_output(textval, ctx);
         if (textval)



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org