From ce5f9a7d6b74aa4c026819efdf549d4046ce26a2 Mon Sep 17 00:00:00 2001 From: Gwenn Kahz Date: Thu, 4 Nov 2010 10:48:25 +0100 Subject: [PATCH] 616478 Fix xmllint shell write command The current node wasn't passed down ! --- debugXML.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debugXML.c b/debugXML.c index 415889a6..c26217a3 100644 --- a/debugXML.c +++ b/debugXML.c @@ -2941,7 +2941,7 @@ xmlShell(xmlDocPtr doc, char *filename, xmlShellReadlineFunc input, xmlGenericError(xmlGenericErrorContext, "Write command requires a filename argument\n"); else - xmlShellWrite(ctxt, arg, NULL, NULL); + xmlShellWrite(ctxt, arg, ctxt->node, NULL); #endif /* LIBXML_OUTPUT_ENABLED */ } else if (!strcmp(command, "grep")) { xmlShellGrep(ctxt, arg, ctxt->node, NULL);