From 828e4c72181fb748b1f12072351f4cd3e5be4dd5 Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Wed, 7 Sep 2011 17:46:01 +0100 Subject: [PATCH] Fix conv_xslt() error-reporting when stylesheet is not found. (The value of fullpath is meaningless in this situation.) --- src/record_conv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/record_conv.c b/src/record_conv.c index c644c7d..0ec4f13 100644 --- a/src/record_conv.c +++ b/src/record_conv.c @@ -177,7 +177,7 @@ static int conv_xslt(yaz_record_conv_t p, const xmlNode *ptr) { wrbuf_printf(p->wr_error, "Element :" " could not locate stylesheet '%s'", - stylesheet, fullpath); + stylesheet, stylesheet); if (p->path) wrbuf_printf(p->wr_error, " with path '%s'", p->path); -- 1.7.10.4