X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=src%2Flibxml2_error.c;h=d7abcf84ec13551209ddeb39bc1a759c79d5068f;hp=725b7cf3d8c2af9f30a19debddbe3f692ec9896d;hb=8377081b9917f820ae91f17e24743c84ef0cfc4d;hpb=8d691989077a0addcbd840d769dce6700f3d9622 diff --git a/src/libxml2_error.c b/src/libxml2_error.c index 725b7cf..d7abcf8 100644 --- a/src/libxml2_error.c +++ b/src/libxml2_error.c @@ -1,8 +1,6 @@ -/* - * Copyright (C) 2007, Index Data ApS +/* This file is part of the YAZ toolkit. + * Copyright (C) 1995-2008 Index Data * See the file LICENSE for details. - * - * $Id: libxml2_error.c,v 1.3 2007-01-03 08:42:15 adam Exp $ */ /** * \file libxml2_error.c @@ -12,6 +10,7 @@ #include #include #include +#include #include #if YAZ_HAVE_XML2 @@ -24,6 +23,7 @@ static int libxml2_error_level = 0; +#if YAZ_HAVE_XML2 static void proxy_xml_error_handler(void *ctx, const char *fmt, ...) { char buf[1024]; @@ -31,24 +31,21 @@ static void proxy_xml_error_handler(void *ctx, const char *fmt, ...) va_list ap; va_start(ap, fmt); -#ifdef WIN32 - vsprintf(buf, fmt, ap); -#else - vsnprintf(buf, sizeof(buf), fmt, ap); -#endif + yaz_vsnprintf(buf, sizeof(buf)-1, fmt, ap); yaz_log(libxml2_error_level, "%s: %s", (char*) ctx, buf); va_end (ap); } +#endif int libxml2_error_to_yazlog(int level, const char *lead_msg) { libxml2_error_level = level; +#if YAZ_HAVE_XML2 + xmlSetGenericErrorFunc((void *) "XML", proxy_xml_error_handler); #if YAZ_HAVE_XSLT xsltSetGenericErrorFunc((void *) "XSLT", proxy_xml_error_handler); #endif -#if YAZ_HAVE_XML2 - xmlSetGenericErrorFunc((void *) "XML", proxy_xml_error_handler); return 0; #else return -1;