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 na...@apache.org on 2008/09/16 10:47:14 UTC

svn commit: r695772 - /webservices/axis2/trunk/c/neethi/src/rmpolicy/rm_assertion_builder.c

Author: nandika
Date: Tue Sep 16 01:47:13 2008
New Revision: 695772

URL: http://svn.apache.org/viewvc?rev=695772&view=rev
Log:
compile errors fixed

Modified:
    webservices/axis2/trunk/c/neethi/src/rmpolicy/rm_assertion_builder.c

Modified: webservices/axis2/trunk/c/neethi/src/rmpolicy/rm_assertion_builder.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/neethi/src/rmpolicy/rm_assertion_builder.c?rev=695772&r1=695771&r2=695772&view=diff
==============================================================================
--- webservices/axis2/trunk/c/neethi/src/rmpolicy/rm_assertion_builder.c (original)
+++ webservices/axis2/trunk/c/neethi/src/rmpolicy/rm_assertion_builder.c Tue Sep 16 01:47:13 2008
@@ -74,7 +74,7 @@
     {
         AXIS2_LOG_ERROR(env->log, AXIS2_LOG_SI,
             "[neethi] Cannot get qname from element");
-        return AXIS2_FAILURE;
+        return NULL;
     }
 
     ns = axutil_qname_get_uri(node_qname, env);
@@ -82,7 +82,7 @@
     {
         AXIS2_LOG_ERROR(env->log, AXIS2_LOG_SI,
             "[neethi] Cannot get namespace from element.");
-        return AXIS2_FAILURE;
+        return NULL;
     }
 
     rm_assertion = axis2_rm_assertion_create(env);
@@ -135,14 +135,14 @@
                     {
                         AXIS2_LOG_ERROR(env->log, AXIS2_LOG_SI,
                             "[neethi] Cannot get qname from element %s.", local_name);
-                        return AXIS2_FAILURE;
+                        return NULL;
                     }
                     ns = axutil_qname_get_uri(node_qname, env);
                     if(!ns)
                     {
                         AXIS2_LOG_ERROR(env->log, AXIS2_LOG_SI,
                             "[neethi] Cannot get namespace from element %s.", local_name);
-                        return AXIS2_FAILURE;
+                        return NULL;
                     }
                     if(!axutil_strcmp(ns, AXIS2_SANDESHA2_NS))
                     {