X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=src%2Fstatserv.c;h=dfba86b9b4fa3cdd5b7a633ec2a20d6f536b97e0;hb=4feb736e570d15bbc8254d593e0c44ed5066be85;hp=105d32761a5bb533f19087910d43faf97f56e7df;hpb=681b7be9d32f67cd1d7a970117d5526d348d5bd7;p=yaz-moved-to-github.git diff --git a/src/statserv.c b/src/statserv.c index 105d327..dfba86b 100644 --- a/src/statserv.c +++ b/src/statserv.c @@ -5,7 +5,7 @@ * NT threaded server code by * Chas Woodfield, Fretwell Downing Informatics. * - * $Id: statserv.c,v 1.28 2005-03-08 13:59:08 adam Exp $ + * $Id: statserv.c,v 1.29 2005-03-14 11:14:21 adam Exp $ */ /** @@ -38,6 +38,7 @@ #if HAVE_XML2 #include #include +#include #endif #if YAZ_POSIX_THREADS @@ -443,6 +444,16 @@ static void xml_config_open() yaz_log(YLOG_FATAL, "Could not parse %s", control_block.xml_config); exit(1); } + else + { + int noSubstitutions = xmlXIncludeProcess(xml_config_doc); + if (noSubstitutions == -1) + { + yaz_log(YLOG_WARN, "XInclude processing failed for config %s", + control_block.xml_config); + exit(1); + } + } } xml_config_read(); #endif