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/01 04:41:21 UTC

svn commit: r350133 - in /webservices/axis2/trunk/c/modules/core/context/src: Makefile.am ctx.c

Author: samisa
Date: Wed Nov 30 19:41:16 2005
New Revision: 350133

URL: http://svn.apache.org/viewcvs?rev=350133&view=rev
Log:
Added conf_ctx to make and bug fixes in ctx

Modified:
    webservices/axis2/trunk/c/modules/core/context/src/Makefile.am
    webservices/axis2/trunk/c/modules/core/context/src/ctx.c

Modified: webservices/axis2/trunk/c/modules/core/context/src/Makefile.am
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/context/src/Makefile.am?rev=350133&r1=350132&r2=350133&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/context/src/Makefile.am (original)
+++ webservices/axis2/trunk/c/modules/core/context/src/Makefile.am Wed Nov 30 19:41:16 2005
@@ -1,6 +1,6 @@
 lib_LTLIBRARIES = libaxis2_context.la
 AM_CPPFLAGS = $(CPPFLAGS)
-libaxis2_context_la_SOURCES = ctx.c msg_ctx.c operation_ctx.c svc_ctx.c svc_grp_ctx.c
+libaxis2_context_la_SOURCES = ctx.c msg_ctx.c operation_ctx.c svc_ctx.c svc_grp_ctx.c conf_ctx.c
 
 libaxis2_context_la_LIBADD = $(LDFLAGS)
 INCLUDES = -I${CUTEST_HOME}/include \

Modified: webservices/axis2/trunk/c/modules/core/context/src/ctx.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/context/src/ctx.c?rev=350133&r1=350132&r2=350133&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/context/src/ctx.c (original)
+++ webservices/axis2/trunk/c/modules/core/context/src/ctx.c Wed Nov 30 19:41:16 2005
@@ -136,7 +136,8 @@
     return ret;
 }
 
-axis2_hash_t* AXIS2_CALL axis2_ctx_get_non_persistent_map(struct axis2_ctx *ctx, axis2_env_t **env) 
+axis2_hash_t* AXIS2_CALL 
+axis2_ctx_get_non_persistent_map(struct axis2_ctx *ctx, axis2_env_t **env) 
 {
     AXIS2_FUNC_PARAM_CHECK(ctx, env, NULL);
     return AXIS2_INTF_TO_IMPL(ctx)->non_persistent_map;