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 sa...@apache.org on 2005/12/30 03:44:16 UTC

svn commit: r359973 - in /webservices/axis2/trunk/c: include/axis2_msg_sender.h modules/core/clientapi/msg_sender.c

Author: samisa
Date: Thu Dec 29 18:44:09 2005
New Revision: 359973

URL: http://svn.apache.org/viewcvs?rev=359973&view=rev
Log:
Fixed a bug in axis2_msg_sender

Modified:
    webservices/axis2/trunk/c/include/axis2_msg_sender.h
    webservices/axis2/trunk/c/modules/core/clientapi/msg_sender.c

Modified: webservices/axis2/trunk/c/include/axis2_msg_sender.h
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/include/axis2_msg_sender.h?rev=359973&r1=359972&r2=359973&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_msg_sender.h (original)
+++ webservices/axis2/trunk/c/include/axis2_msg_sender.h Thu Dec 29 18:44:09 2005
@@ -94,7 +94,7 @@
 	 * Get the message information header object. All the sets to 
 	 * msg_info_headers should be done via get_msg_info and a set
 	 */					
-	axis2_status_t (AXIS2_CALL *get_msg_info_headers)(
+	axis2_msg_info_headers_t* (AXIS2_CALL *get_msg_info_headers)(
 						axis2_msg_sender_t *msg_sender, axis2_env_t **env);
 						
     axis2_status_t (AXIS2_CALL *free)(struct axis2_msg_sender *msg_sender, 

Modified: webservices/axis2/trunk/c/modules/core/clientapi/msg_sender.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/clientapi/msg_sender.c?rev=359973&r1=359972&r2=359973&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/clientapi/msg_sender.c (original)
+++ webservices/axis2/trunk/c/modules/core/clientapi/msg_sender.c Thu Dec 29 18:44:09 2005
@@ -56,7 +56,7 @@
 						axis2_env_t **env,
 						axis2_char_t *op_name, 
 						axis2_soap_envelope_t *envelope);
-axis2_status_t AXIS2_CALL 
+axis2_msg_info_headers_t* AXIS2_CALL 
 axis2_msg_sender_get_msg_info_headers(axis2_msg_sender_t *msg_sender, 
 						axis2_env_t **env);
 					
@@ -327,7 +327,7 @@
    	return status;
 }
 
-axis2_status_t AXIS2_CALL 
+axis2_msg_info_headers_t* AXIS2_CALL 
 axis2_msg_sender_get_msg_info_headers(axis2_msg_sender_t *msg_sender, 
 						axis2_env_t **env)
 {