summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKasimier T. Buchcik <kbuchcik@src.gnome.org>2006-05-11 20:18:27 +0000
committerKasimier T. Buchcik <kbuchcik@src.gnome.org>2006-05-11 20:18:27 +0000
commit8f605ccf7c324d38a57cb0bfe85d38de20070b2a (patch)
tree302df40594bd1545ec7d6cd674320f47e918ee3b
parent10969bdc905537d3766cb395b41991cbc099e1fe (diff)
downloadlibxslt-8f605ccf7c324d38a57cb0bfe85d38de20070b2a.tar.gz
libxslt-8f605ccf7c324d38a57cb0bfe85d38de20070b2a.tar.bz2
libxslt-8f605ccf7c324d38a57cb0bfe85d38de20070b2a.zip
Changed a comment to indicate that a specific bug was already fixed.
* libxslt/extensions.c: Changed a comment to indicate that a specific bug was already fixed.
-rw-r--r--ChangeLog5
-rw-r--r--libxslt/extensions.c7
2 files changed, 9 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index a55491e6..fb744896 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Thu May 11 22:12:22 CEST 2006 Kasimier Buchcik <libxml2-cvs@cazic.net>
+
+ * libxslt/extensions.c: Changed a comment to indicate that a
+ specific bug was already fixed.
+
Fri May 5 23:10:47 CEST 2006 Kasimier Buchcik <libxml2-cvs@cazic.net>
* libxslt/xsltInternals.h libxslt/attributes.c
diff --git a/libxslt/extensions.c b/libxslt/extensions.c
index b7dad9bc..0a7bc723 100644
--- a/libxslt/extensions.c
+++ b/libxslt/extensions.c
@@ -1152,9 +1152,10 @@ xsltCheckExtPrefix(xsltStylesheetPtr style, const xmlChar * URI)
cur = (xsltExtDefPtr) style->nsDefs;
while (cur != NULL) {
/*
- * TODO: This is the old behaviour and it won't work
- * correctly, since it works with the namespace prefix,
- * but it should work with the namespace name.
+ * NOTE: This was change to work on namespace names rather
+ * than namespace prefixes. This fixes bug #339583.
+ * TODO: Consider renaming the field "prefix" of xsltExtDef
+ * to "href".
*/
if (xmlStrEqual(URI, cur->prefix))
return (1);