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 sa...@apache.org on 2006/11/13 00:58:43 UTC

svn commit: r474099 - /webservices/axis2/trunk/c/modules/core/engine/addr_disp.c

Author: samisa
Date: Sun Nov 12 15:58:43 2006
New Revision: 474099

URL: http://svn.apache.org/viewvc?view=rev&rev=474099
Log:
Declared the appropriate functions static

Modified:
    webservices/axis2/trunk/c/modules/core/engine/addr_disp.c

Modified: webservices/axis2/trunk/c/modules/core/engine/addr_disp.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/engine/addr_disp.c?view=diff&rev=474099&r1=474098&r2=474099
==============================================================================
--- webservices/axis2/trunk/c/modules/core/engine/addr_disp.c (original)
+++ webservices/axis2/trunk/c/modules/core/engine/addr_disp.c Sun Nov 12 15:58:43 2006
@@ -26,18 +26,18 @@
 
 #define AXIS2_ADDR_DISP_NAME "addressing_based_dispatcher"
 
-axis2_status_t AXIS2_CALL
+static axis2_status_t AXIS2_CALL
 axis2_addr_disp_invoke(
     axis2_handler_t *handler,
     const axis2_env_t *env,
     struct axis2_msg_ctx *msg_ctx);
 
-axis2_svc_t *AXIS2_CALL
+static axis2_svc_t *AXIS2_CALL
 axis2_addr_disp_find_svc(
     axis2_msg_ctx_t *msg_ctx,
     const axis2_env_t *env);
 
-axis2_op_t *AXIS2_CALL
+static axis2_op_t *AXIS2_CALL
 axis2_addr_disp_find_op(
     axis2_msg_ctx_t *msg_ctx,
     const axis2_env_t *env,
@@ -85,7 +85,7 @@
     return disp;
 }
 
-axis2_svc_t *AXIS2_CALL
+static axis2_svc_t *AXIS2_CALL
 axis2_addr_disp_find_svc(
     axis2_msg_ctx_t *msg_ctx,
     const axis2_env_t *env)
@@ -155,7 +155,7 @@
     return svc;
 }
 
-axis2_op_t *AXIS2_CALL
+static axis2_op_t *AXIS2_CALL
 axis2_addr_disp_find_op(
     axis2_msg_ctx_t *msg_ctx,
     const axis2_env_t *env,
@@ -187,7 +187,7 @@
 }
 
 
-axis2_status_t AXIS2_CALL
+static axis2_status_t AXIS2_CALL
 axis2_addr_disp_invoke(
     axis2_handler_t *handler,
     const axis2_env_t *env,



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