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 da...@apache.org on 2005/12/05 11:43:49 UTC

svn commit: r354043 - in /webservices/axis2/trunk/c: include/axis2_msg_ctx.h include/axis2_phase_meta.h modules/core/description/src/svc.c

Author: damitha
Date: Mon Dec  5 02:43:38 2005
New Revision: 354043

URL: http://svn.apache.org/viewcvs?rev=354043&view=rev
Log:
Removed a warning form description module

Modified:
    webservices/axis2/trunk/c/include/axis2_msg_ctx.h
    webservices/axis2/trunk/c/include/axis2_phase_meta.h
    webservices/axis2/trunk/c/modules/core/description/src/svc.c

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=354043&r1=354042&r2=354043&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_msg_ctx.h (original)
+++ webservices/axis2/trunk/c/include/axis2_msg_ctx.h Mon Dec  5 02:43:38 2005
@@ -562,7 +562,7 @@
      */
     axis2_bool_t (AXIS2_CALL *
     is_paused) (axis2_msg_ctx_t *msg_ctx,
-                            axis2_env_t **env) 
+                            axis2_env_t **env);
 };
 
 /** 

Modified: webservices/axis2/trunk/c/include/axis2_phase_meta.h
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/include/axis2_phase_meta.h?rev=354043&r1=354042&r2=354043&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_phase_meta.h (original)
+++ webservices/axis2/trunk/c/include/axis2_phase_meta.h Mon Dec  5 02:43:38 2005
@@ -40,22 +40,22 @@
      #define  AXIS2_FAULT_OUTFLOW 4
 
     /* INFLOW */
-     static const axis2_char_t *AXIS2_PHASE_TRANSPORTIN = "TransportIn";
-     static const axis2_char_t *AXIS2_PHASE_PRE_DISPATCH = "PreDispatch";
-     static const axis2_char_t *AXIS2_PHASE_DISPATCH = "Dispatch";
-     static const axis2_char_t *AXIS2_PHASE_POST_DISPATCH = "PostDispatch";
-     static const axis2_char_t *AXIS2_PHASE_POLICY_DETERMINATION = "PolicyDetermination";
-     /*static const axis2_char_t *AXIS2_PHASE_MESSAGE_PROCESSING = "MessageProcessing";
-*/
+     #define AXIS2_PHASE_TRANSPORTIN "TransportIn"
+     #define AXIS2_PHASE_PRE_DISPATCH "PreDispatch"
+     #define AXIS2_PHASE_DISPATCH "Dispatch"
+     #define AXIS2_PHASE_POST_DISPATCH "PostDispatch"
+     #define AXIS2_PHASE_POLICY_DETERMINATION "PolicyDetermination"
+     #define AXIS2_PHASE_MESSAGE_PROCESSING "MessageProcessing"
+
     /* OUTFLOW */
-     static const axis2_char_t *AXIS2_PHASE_MESSAGE_OUT = "MessageOut";
-     static const axis2_char_t *AXIS2_PHASE_TRANSPORT_OUT = "MessageOut";
+     #define AXIS2_PHASE_MESSAGE_OUT "MessageOut"
+     #define AXIS2_PHASE_TRANSPORT_OUT "MessageOut"
      
     /**
      * All the handlers inside transport_sender and tranport_recievre in axis2.xml gose
      * to this phase
      */
-     static const axis2_char_t *AXIS2_TRANSPORT_PHASE = "TRANSPORT";
+     #define AXIS2_TRANSPORT_PHASE "TRANSPORT"
 
 
 /** @} */

Modified: webservices/axis2/trunk/c/modules/core/description/src/svc.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/description/src/svc.c?rev=354043&r1=354042&r2=354043&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/description/src/svc.c (original)
+++ webservices/axis2/trunk/c/modules/core/description/src/svc.c Mon Dec  5 02:43:38 2005
@@ -1021,7 +1021,6 @@
 {
     axis2_svc_impl_t *svc_impl = NULL;
     axis2_hash_t *binding_operations = NULL;
-    struct axis2_operation * axis2_opt = NULL;
     int count = 0;
     int j = 0;
     axis2_hash_index_t *index_i = NULL;