From 7b5a82f255a85fe2ef466b68e40d9eb1829c633a Mon Sep 17 00:00:00 2001 From: Michael Krelin Date: Sun, 06 Jan 2008 23:00:18 +0000 Subject: Revert "discovery: stop parser with XML_StopParser()" for now This reverts commit 7bde7f66284b47a75bbceadc360e7f03550ace21. because some older expat version do not support this function I don't want to make it conditional for now. Conflicts: lib/discovery.cc Signed-off-by: Michael Krelin --- (limited to 'include') diff --git a/include/opkele/expat.h b/include/opkele/expat.h index 97ed61a..60c41ac 100644 --- a/include/opkele/expat.h +++ b/include/opkele/expat.h @@ -23,10 +23,8 @@ namespace opkele { inline bool parse(const char *s,int len,bool final=false) { assert(_x); - return XML_Parse(_x,s,len,final); } - enum XML_Status stop_parser(bool resumable=false) { - assert(_x); - return XML_StopParser(_x,resumable); } + return XML_Parse(_x,s,len,final); + } virtual void start_element(const XML_Char *n,const XML_Char **a) { } virtual void end_element(const XML_Char *n) { } -- cgit v0.9.0.2