616478 Fix xmllint shell write command

The current node wasn't passed down !
This commit is contained in:
Gwenn Kahz 2010-11-04 10:48:25 +01:00 committed by Daniel Veillard
parent d4b5447141
commit ce5f9a7d6b

View File

@ -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);