You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by na...@apache.org on 2007/03/06 05:21:02 UTC

svn commit: r514977 - /webservices/axis2/trunk/c/modules/core/addr/msg_info_headers.c

Author: nandika
Date: Mon Mar  5 20:21:02 2007
New Revision: 514977

URL: http://svn.apache.org/viewvc?view=rev&rev=514977
Log:
compile error fixed

Modified:
    webservices/axis2/trunk/c/modules/core/addr/msg_info_headers.c

Modified: webservices/axis2/trunk/c/modules/core/addr/msg_info_headers.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/addr/msg_info_headers.c?view=diff&rev=514977&r1=514976&r2=514977
==============================================================================
--- webservices/axis2/trunk/c/modules/core/addr/msg_info_headers.c (original)
+++ webservices/axis2/trunk/c/modules/core/addr/msg_info_headers.c Mon Mar  5 20:21:02 2007
@@ -139,7 +139,7 @@
 axis2_status_t AXIS2_CALL
 axis2_msg_info_headers_set_from(struct axis2_msg_info_headers *msg_info_headers,
     const axis2_env_t *env,
-    const axis2_endpoint_ref_t *from)
+    axis2_endpoint_ref_t *from)
 {
     AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
     msg_info_headers->from = from;
@@ -156,7 +156,7 @@
 axis2_status_t AXIS2_CALL
 axis2_msg_info_headers_set_reply_to(struct axis2_msg_info_headers *msg_info_headers,
     const axis2_env_t *env,
-    const axis2_endpoint_ref_t *reply_to)
+    axis2_endpoint_ref_t *reply_to)
 {
     AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
     msg_info_headers->reply_to = reply_to;
@@ -173,7 +173,7 @@
 axis2_status_t AXIS2_CALL
 axis2_msg_info_headers_set_fault_to(struct axis2_msg_info_headers *msg_info_headers,
     const axis2_env_t *env,
-    const axis2_endpoint_ref_t *fault_to)
+    axis2_endpoint_ref_t *fault_to)
 {
     AXIS2_ENV_CHECK(env, AXIS2_FAILURE);
     msg_info_headers->fault_to = fault_to;



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