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 2006/05/04 10:20:49 UTC

svn commit: r399606 - /webservices/axis2/trunk/c/modules/core/deployment/desc_builder.c

Author: damitha
Date: Thu May  4 01:20:47 2006
New Revision: 399606

URL: http://svn.apache.org/viewcvs?rev=399606&view=rev
Log:
Corrected the wrong error message

Modified:
    webservices/axis2/trunk/c/modules/core/deployment/desc_builder.c

Modified: webservices/axis2/trunk/c/modules/core/deployment/desc_builder.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/modules/core/deployment/desc_builder.c?rev=399606&r1=399605&r2=399606&view=diff
==============================================================================
--- webservices/axis2/trunk/c/modules/core/deployment/desc_builder.c (original)
+++ webservices/axis2/trunk/c/modules/core/deployment/desc_builder.c Thu May  4 01:20:47 2006
@@ -713,7 +713,8 @@
                 if(parent && AXIS2_TRUE == is_param_locked)
                 {
                     AXIS2_PARAM_FREE(param, env);
-                    AXIS2_ERROR_SET((*env)->error, AXIS2_ERROR_CONF_NOT_FOUND,
+                    AXIS2_ERROR_SET((*env)->error, 
+                        AXIS2_ERROR_PARAMETER_LOCKED_CANNOT_OVERRIDE, 
                         AXIS2_FAILURE);
                     return AXIS2_FAILURE;
                 }