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/14 10:36:23 UTC

svn commit: r356758 - /webservices/axis2/trunk/c/modules/core/description/src/svc.c

Author: damitha
Date: Wed Dec 14 01:36:18 2005
New Revision: 356758

URL: http://svn.apache.org/viewcvs?rev=356758&view=rev
Log:
fixed a small bug

Modified:
    webservices/axis2/trunk/c/modules/core/description/src/svc.c

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=356758&r1=356757&r2=356758&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/description/src/svc.c (original)
+++ webservices/axis2/trunk/c/modules/core/description/src/svc.c Wed Dec 14 01:36:18 2005
@@ -379,8 +379,8 @@
 	svc_impl->svc.ops->get_ops = axis2_svc_get_ops;
 	svc_impl->svc.ops->set_parent = axis2_svc_set_parent;
 	svc_impl->svc.ops->get_parent = axis2_svc_get_parent;
-    svc_impl->svc.ops->set_name = axis2_svc_set_name;
-	svc_impl->svc.ops->get_name = axis2_svc_get_name;
+    svc_impl->svc.ops->set_qname = axis2_svc_set_qname;
+	svc_impl->svc.ops->get_qname = axis2_svc_get_qname;
 	svc_impl->svc.ops->add_param = axis2_svc_add_param;
 	svc_impl->svc.ops->get_param = axis2_svc_get_param;
 	svc_impl->svc.ops->get_params = axis2_svc_get_params;
@@ -473,7 +473,7 @@
         return NULL;
 	}
     
-	status = axis2_svc_set_name(&(svc_impl->svc), env, qname);
+	status = axis2_svc_set_qname(&(svc_impl->svc), env, qname);
     if(AXIS2_FAILURE == status)
     {
         axis2_svc_free(&(svc_impl->svc), env);