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 2005/11/21 03:20:55 UTC

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

Author: samisa
Date: Sun Nov 20 18:20:50 2005
New Revision: 345809

URL: http://svn.apache.org/viewcvs?rev=345809&view=rev
Log:
Fixed missing funcion pointer assignments of ops

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

Modified: webservices/axis2/trunk/c/modules/core/context/src/Makefile.in
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/context/src/Makefile.in?rev=345809&r1=345808&r2=345809&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/context/src/Makefile.in (original)
+++ webservices/axis2/trunk/c/modules/core/context/src/Makefile.in Sun Nov 20 18:20:50 2005
@@ -62,7 +62,7 @@
 LTLIBRARIES = $(lib_LTLIBRARIES)
 am__DEPENDENCIES_1 =
 libaxis2_context_la_DEPENDENCIES = $(am__DEPENDENCIES_1)
-am_libaxis2_context_la_OBJECTS = msg_ctx.lo
+am_libaxis2_context_la_OBJECTS = ctx.lo msg_ctx.lo
 libaxis2_context_la_OBJECTS = $(am_libaxis2_context_la_OBJECTS)
 DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir)
 depcomp = $(SHELL) $(top_srcdir)/conftools/depcomp
@@ -189,7 +189,7 @@
 target_vendor = @target_vendor@
 lib_LTLIBRARIES = libaxis2_context.la
 AM_CPPFLAGS = $(CPPFLAGS)
-libaxis2_context_la_SOURCES = msg_ctx.c
+libaxis2_context_la_SOURCES = ctx.c msg_ctx.c
 libaxis2_context_la_LIBADD = $(LDFLAGS)
 INCLUDES = -I${CUTEST_HOME}/include \
             -I$(top_builddir)/modules/xml/guththila/src \
@@ -265,6 +265,7 @@
 distclean-compile:
 	-rm -f *.tab.c
 
+@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ctx.Plo@am__quote@
 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/msg_ctx.Plo@am__quote@
 
 .c.o:

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=345809&r1=345808&r2=345809&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/context/src/ctx.c (original)
+++ webservices/axis2/trunk/c/modules/core/context/src/ctx.c Sun Nov 20 18:20:50 2005
@@ -79,6 +79,9 @@
         return NULL;        
     }
 
+    ctx_impl->ctx.ops->get_property = axis2_ctx_get_property;
+    ctx_impl->ctx.ops->get_non_persistent_map = axis2_ctx_get_non_persistent_map;
+    ctx_impl->ctx.ops->get_persistent_map = axis2_ctx_get_persistent_map;
     ctx_impl->ctx.ops->free = axis2_ctx_free;
 
     return &(ctx_impl->ctx);