diff options
Diffstat (limited to 'libcsoap/soap-fault.c')
-rw-r--r-- | libcsoap/soap-fault.c | 4 |
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) { |