From 9ff7de14aef5ffebdc2b727bfef74d31e08bc4f9 Mon Sep 17 00:00:00 2001 From: Daniel Veillard Date: Tue, 29 Jul 2003 13:30:42 +0000 Subject: [PATCH] fix the previous commit Daniel * encoding.c: fix the previous commit Daniel --- ChangeLog | 4 ++++ encoding.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index ea4e735b..f9598966 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Tue Jul 29 09:28:09 EDT 2003 Daniel Veillard + + * encoding.c: fix the previous commit + Tue Jul 29 12:28:17 HKT 2003 William Brack * HTMLparser.c: fixed problem with comments reported by Nick Kew diff --git a/encoding.c b/encoding.c index 5cefd39c..7d1a9716 100644 --- a/encoding.c +++ b/encoding.c @@ -128,7 +128,7 @@ xmlUTF8Charcmp(const xmlChar *utf1, const xmlChar *utf2) { return 0; return -1; } - return xmlStrncmp(utf1, utf2, xsltUTF8Size(utf1)); + return xmlStrncmp(utf1, utf2, xmlUTF8Size(utf1)); } /**