summaryrefslogtreecommitdiffstats
path: root/libcsoap/soap-fault.c
diff options
context:
space:
mode:
authorGravatar rans2004-09-02 11:48:28 +0000
committerGravatar rans2004-09-02 11:48:28 +0000
commitfc13964422ceccee84640cdc71a308dd48976560 (patch)
treeb54b1e082a966823bbda804ef41149909c5ef482 /libcsoap/soap-fault.c
parent7e7de8942cab7cd63dae5aa8799c9b0cbb0a4002 (diff)
downloadcsoap-fc13964422ceccee84640cdc71a308dd48976560.tar.gz
csoap-fc13964422ceccee84640cdc71a308dd48976560.tar.bz2
Just changed casts to libxml2's BAD_CAST xwin32_migration_20040903
Diffstat (limited to 'libcsoap/soap-fault.c')
-rw-r--r--libcsoap/soap-fault.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libcsoap/soap-fault.c b/libcsoap/soap-fault.c
index b002ddc..698c044 100644
--- a/libcsoap/soap-fault.c
+++ b/libcsoap/soap-fault.c
@@ -1,5 +1,5 @@
/******************************************************************
-* $Id: soap-fault.c,v 1.3 2004/08/26 17:06:18 rans Exp $
+* $Id: soap-fault.c,v 1.4 2004/09/02 11:48:28 rans Exp $
*
* CSOAP Project: A SOAP client/server library in C
* Copyright (C) 2003 Ferhat Ayaz
@@ -108,7 +108,7 @@ xmlDocPtr soap_fault_build(fault_code_t fcode,
faultactor?faultactor:"",
detail?detail:"");
- fault = xmlParseDoc((xmlChar *)buffer);
+ fault = xmlParseDoc(BAD_CAST buffer);
free(buffer);
if (fault == NULL) {