From fc13964422ceccee84640cdc71a308dd48976560 Mon Sep 17 00:00:00 2001 From: rans Date: Thu, 2 Sep 2004 11:48:28 +0000 Subject: Just changed casts to libxml2's BAD_CAST x --- libcsoap/soap-fault.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libcsoap/soap-fault.c') 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) { -- cgit v1.1-32-gdbae