From 0e97c3ee2674db2fe466ed0aa191b690c9f5af70 Mon Sep 17 00:00:00 2001 From: Sergio Date: Wed, 7 May 2014 19:05:24 +0200 Subject: [PATCH] xmllint was not parsing the --c14n11 flag, fixes #1 --- xmllint.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xmllint.c b/xmllint.c index 9d46ac5..b297ded 100644 --- a/xmllint.c +++ b/xmllint.c @@ -2580,7 +2580,7 @@ static void parseAndPrintFile(char *filename, xmlParserCtxtPtr rectxt) { fprintf(stderr, "Failed to canonicalize\n"); progresult = XMLLINT_ERR_OUT; } - } else if (canonical) { + } else if (canonical_11) { xmlChar *result = NULL; int size; -- 1.9.1