fixing bug #94241 on HTML boolean attributes Daniel

* HTMLtree.c: fixing bug #94241 on HTML boolean attributes
Daniel
diff --git a/ChangeLog b/ChangeLog
index b212fe7..77e68ed 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Thu Sep 26 14:39:07 CEST 2002 Daniel Veillard <daniel@veillard.com>
+
+	* HTMLtree.c: fixing bug #94241 on HTML boolean attributes
+
 Thu Sep 26 14:25:33 CEST 2002 Daniel Veillard <daniel@veillard.com>
 
 	* doc/*: added the 3 new modules xmlregexp xmlautomata and xmlunicode
diff --git a/HTMLtree.c b/HTMLtree.c
index 82e1dc1..cbd0ef0 100644
--- a/HTMLtree.c
+++ b/HTMLtree.c
@@ -306,7 +306,7 @@
     int i = 0;
 
     while (htmlBooleanAttrs[i] != NULL) {
-        if (xmlStrcmp((const xmlChar *)htmlBooleanAttrs[i], name) == 0)
+        if (xmlStrcasecmp((const xmlChar *)htmlBooleanAttrs[i], name) == 0)
             return 1;
         i++;
     }