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 da...@apache.org on 2006/05/02 06:47:48 UTC

svn commit: r398805 - in /webservices/axis2/trunk/c/modules/core/clientapi: call.c listener_manager.h

Author: damitha
Date: Mon May  1 21:47:46 2006
New Revision: 398805

URL: http://svn.apache.org/viewcvs?rev=398805&view=rev
Log:
Fixed a typo in AXIS2_LISTENER_MANAGER_STOP macro


Modified:
    webservices/axis2/trunk/c/modules/core/clientapi/call.c
    webservices/axis2/trunk/c/modules/core/clientapi/listener_manager.h

Modified: webservices/axis2/trunk/c/modules/core/clientapi/call.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/clientapi/call.c?rev=398805&r1=398804&r2=398805&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/clientapi/call.c (original)
+++ webservices/axis2/trunk/c/modules/core/clientapi/call.c Mon May  1 21:47:46 2006
@@ -887,7 +887,7 @@
     if (!transport_name)
         return AXIS2_FAILURE;
     
-    return AXIS2_LISTNER_MANAGER_STOP(call_impl->listener_manager, env, transport_name);
+    return AXIS2_LISTENER_MANAGER_STOP(call_impl->listener_manager, env, transport_name);
 }
 
 void * AXIS2_THREAD_FUNC

Modified: webservices/axis2/trunk/c/modules/core/clientapi/listener_manager.h
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/clientapi/listener_manager.h?rev=398805&r1=398804&r2=398805&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/clientapi/listener_manager.h (original)
+++ webservices/axis2/trunk/c/modules/core/clientapi/listener_manager.h Mon May  1 21:47:46 2006
@@ -104,7 +104,7 @@
 #define AXIS2_LISTNER_MANAGER_MAKE_SURE_STARTED(listener_manager, env, transport, conf_ctx)\
         ((listener_manager)->ops->make_sure_started(listener_manager, env, transport, conf_ctx))
         
-#define AXIS2_LISTNER_MANAGER_STOP(listener_manager, env, transport)\
+#define AXIS2_LISTENER_MANAGER_STOP(listener_manager, env, transport)\
         ((listener_manager)->ops->stop(listener_manager, env, transport))
         
 #define AXIS2_LISTNER_MANAGER_REPLY_TO_EPR(listener_manager, env, svc_name, transport) \