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 sa...@apache.org on 2006/03/23 17:08:07 UTC

svn commit: r388196 - in /webservices/axis2/trunk/c: include/axis2_soap_envelope.h test/xml/soap/test_soap.c

Author: samisa
Date: Thu Mar 23 08:08:05 2006
New Revision: 388196

URL: http://svn.apache.org/viewcvs?rev=388196&view=rev
Log:
Fixed the build break caused by the application of the patch

Modified:
    webservices/axis2/trunk/c/include/axis2_soap_envelope.h
    webservices/axis2/trunk/c/test/xml/soap/test_soap.c

Modified: webservices/axis2/trunk/c/include/axis2_soap_envelope.h
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/include/axis2_soap_envelope.h?rev=388196&r1=388195&r2=388196&view=diff
==============================================================================
--- webservices/axis2/trunk/c/include/axis2_soap_envelope.h (original)
+++ webservices/axis2/trunk/c/include/axis2_soap_envelope.h Thu Mar 23 08:08:05 2006
@@ -164,7 +164,7 @@
  
 AXIS2_DECLARE(axis2_soap_envelope_t *)
 axis2_soap_envelope_create_default_soap_fault_envelope(axis2_env_t **env,
-		    axis2_char_t *code_value, axis2_char_t *reason_text, int soap_version)
+		    axis2_char_t *code_value, axis2_char_t *reason_text, int soap_version);
 
 /******************** Macros **************************************************/
 

Modified: webservices/axis2/trunk/c/test/xml/soap/test_soap.c
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/test/xml/soap/test_soap.c?rev=388196&r1=388195&r2=388196&view=diff
==============================================================================
--- webservices/axis2/trunk/c/test/xml/soap/test_soap.c (original)
+++ webservices/axis2/trunk/c/test/xml/soap/test_soap.c Thu Mar 23 08:08:05 2006
@@ -307,7 +307,7 @@
     axis2_om_output_t *om_output = NULL;
     axis2_char_t *buffer = NULL;
 
-    soap_envelope = axis2_soap_envelope_create_default_soap_fault_envelope(env, AXIS2_SOAP11);
+    soap_envelope = axis2_soap_envelope_create_default_soap_fault_envelope(env, NULL, NULL, AXIS2_SOAP11);
     soap_body = AXIS2_SOAP_ENVELOPE_GET_BODY(soap_envelope, env);
     axis2_soap_fault_create_default_fault(env, soap_body, "env:Receiver","A fault occured", AXIS2_SOAP12);