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 2006/01/10 06:50:54 UTC

svn commit: r367494 - in /webservices/axis2/trunk/c: include/axis2_conf_ctx.h test/core/description/test_description.c test/core/engine/test_engine.c

Author: samisa
Date: Mon Jan  9 21:50:41 2006
New Revision: 367494

URL: http://svn.apache.org/viewcvs?rev=367494&view=rev
Log:
Fixed error in function name

Modified:
    webservices/axis2/trunk/c/include/axis2_conf_ctx.h
    webservices/axis2/trunk/c/test/core/description/test_description.c
    webservices/axis2/trunk/c/test/core/engine/test_engine.c

Modified: webservices/axis2/trunk/c/include/axis2_conf_ctx.h
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/include/axis2_conf_ctx.h?rev=367494&r1=367493&r2=367494&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_conf_ctx.h (original)
+++ webservices/axis2/trunk/c/include/axis2_conf_ctx.h Mon Jan  9 21:50:41 2006
@@ -171,7 +171,7 @@
     axis2_conf_ctx_ops_t *ops;    
 };
 
-AXIS2_DECLARE(axis2_conf_ctx_t*) create(axis2_env_t **env, struct axis2_conf *conf);
+AXIS2_DECLARE(axis2_conf_ctx_t*) axis2_conf_ctx_create(axis2_env_t **env, struct axis2_conf *conf);
     
 /************************** Start of function macros **************************/
 

Modified: webservices/axis2/trunk/c/test/core/description/test_description.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/core/description/test_description.c?rev=367494&r1=367493&r2=367494&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/core/description/test_description.c (original)
+++ webservices/axis2/trunk/c/test/core/description/test_description.c Mon Jan  9 21:50:41 2006
@@ -19,11 +19,11 @@
 
     status = axis2_op_engage_module(op, &env, moduleref);
 
-	printf("%d\n", AXIS2_ERROR_GET_STATUS_CODE((env)->error));
+	/*printf("%d\n", AXIS2_ERROR_GET_STATUS_CODE((env)->error));*/
 
 	if(status != AXIS2_SUCCESS )
 	{
-		printf("ERROR\n");
+		printf("ERROR %d\n", status);
 	    return -1;
 	}
 

Modified: webservices/axis2/trunk/c/test/core/engine/test_engine.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/core/engine/test_engine.c?rev=367494&r1=367493&r2=367494&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/core/engine/test_engine.c (original)
+++ webservices/axis2/trunk/c/test/core/engine/test_engine.c Mon Jan  9 21:50:41 2006
@@ -1,6 +1,7 @@
 #include <stdio.h>
 #include <axis2_env.h>
 #include <axis2_engine.h>
+#include <axis2_conf_ctx.h>
 
 int	axis2_test_engine_send()
 {