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/20 06:47:48 UTC

svn commit: r357917 - /webservices/axis2/trunk/c/include/axis2_msg_ctx.h

Author: samisa
Date: Mon Dec 19 21:47:21 2005
New Revision: 357917

URL: http://svn.apache.org/viewcvs?rev=357917&view=rev
Log:
Fixed doing_mtom param name error

Modified:
    webservices/axis2/trunk/c/include/axis2_msg_ctx.h

Modified: webservices/axis2/trunk/c/include/axis2_msg_ctx.h
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/include/axis2_msg_ctx.h?rev=357917&r1=357916&r2=357917&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_msg_ctx.h (original)
+++ webservices/axis2/trunk/c/include/axis2_msg_ctx.h Mon Dec 19 21:47:21 2005
@@ -649,7 +649,7 @@
 #define AXIS2_MSG_CTX_GET_SOAP_ACTION(msg_ctx, env) ((msg_ctx)->ops->get_soap_action(msg_ctx, env))
 #define AXIS2_MSG_CTX_SET_SOAP_ACTION(msg_ctx, env, soap_action) ((msg_ctx)->ops->set_soap_action(msg_ctx, env, soap_action))
 #define AXIS2_MSG_CTX_GET_DOING_MTOM(msg_ctx, env) ((msg_ctx)->ops->get_doing_mtom(msg_ctx, env))
-#define AXIS2_MSG_CTX_SET_DOING_MTOM(msg_ctx, env, set_doing_mtom) ((msg_ctx)->ops->set_doing_mtom(msg_ctx, env, set_doing_mtom))
+#define AXIS2_MSG_CTX_SET_DOING_MTOM(msg_ctx, env, doing_mtom) ((msg_ctx)->ops->set_doing_mtom(msg_ctx, env, doing_mtom))
 #define AXIS2_MSG_CTX_GET_DOING_REST(msg_ctx, env) ((msg_ctx)->ops->get_doing_rest(msg_ctx, env))
 #define AXIS2_MSG_CTX_SET_DOING_REST(msg_ctx, env, doing_rest) ((msg_ctx)->ops->set_doing_rest(msg_ctx, env, doing_rest))
 #define AXIS2_MSG_CTX_SET_DO_REST_THROUGH_POST(msg_ctx, env, do_rest_through_post) ((msg_ctx)->ops->set_do_rest_through_post(msg_ctx, env, do_rest_through_post))