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 da...@apache.org on 2006/08/11 05:57:12 UTC

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

Author: damitha
Date: Thu Aug 10 20:57:12 2006
New Revision: 430649

URL: http://svn.apache.org/viewvc?rev=430649&view=rev
Log:
More work in getting the sandesha2 work

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

Modified: webservices/axis2/trunk/c/modules/core/description/svc.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/modules/core/description/svc.c?rev=430649&r1=430648&r2=430649&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/description/svc.c (original)
+++ webservices/axis2/trunk/c/modules/core/description/svc.c Thu Aug 10 20:57:12 2006
@@ -1058,14 +1058,13 @@
         locked =  AXIS2_SVC_GRP_IS_PARAM_LOCKED(parent, env, param_name);
     if(parent && AXIS2_TRUE == locked)
     {
-        ret = AXIS2_TRUE;
+        return AXIS2_TRUE;
     } 
     param = axis2_svc_get_param(svc, env, param_name);
-    if(NULL == param)
+    if(param)
     {
-        ret = AXIS2_FALSE;
+        ret = AXIS2_PARAM_IS_LOCKED(param, env);
     }
-    ret = AXIS2_PARAM_IS_LOCKED(param, env);
     return ret;
 }
 



---------------------------------------------------------------------
To unsubscribe, e-mail: axis-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: axis-cvs-help@ws.apache.org