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 du...@apache.org on 2007/03/16 10:58:46 UTC

svn commit: r518909 - /webservices/axis2/trunk/c/xml_schema/src/xml_schema_facet.c

Author: dushshantha
Date: Fri Mar 16 02:58:45 2007
New Revision: 518909

URL: http://svn.apache.org/viewvc?view=rev&rev=518909
Log:
Fixed windows build break

Modified:
    webservices/axis2/trunk/c/xml_schema/src/xml_schema_facet.c

Modified: webservices/axis2/trunk/c/xml_schema/src/xml_schema_facet.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/xml_schema/src/xml_schema_facet.c?view=diff&rev=518909&r1=518908&r2=518909
==============================================================================
--- webservices/axis2/trunk/c/xml_schema/src/xml_schema_facet.c (original)
+++ webservices/axis2/trunk/c/xml_schema/src/xml_schema_facet.c Fri Mar 16 02:58:45 2007
@@ -341,12 +341,12 @@
     else
         return NULL;
 
-    attr_value = axiom_element_get_attriute_value_by_name(om_ele, env, fixed_value);
+    attr_value = axiom_element_get_attribute_value_by_name(om_ele, env, fixed_value);
     if (attr_value && AXIS2_STRCMP(attr_value, "fixed") == 0)
         is_fixed = AXIS2_TRUE;
 
     attr_value = NULL;
-    attr_value = axiom_element_get_attriute_value_by_name(om_ele, env, value_v);
+    attr_value = axiom_element_get_attribute_value_by_name(om_ele, env, value_v);
     if (attr_value)
         value = attr_value;
     else



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