aboutsummaryrefslogtreecommitdiffstats
path: root/xmllint.c
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@src.gnome.org>2005-08-22 12:07:04 +0000
committerDaniel Veillard <veillard@src.gnome.org>2005-08-22 12:07:04 +0000
commit465a000b1080427bd62d89a925409b7db78616ac (patch)
treec937a90fe18adfb2b7a053046491360b3e0d649a /xmllint.c
parent630215baf8ba0b871603f6f2ccc3bb68a8b45697 (diff)
downloadandroid_external_libxml2-465a000b1080427bd62d89a925409b7db78616ac.tar.gz
android_external_libxml2-465a000b1080427bd62d89a925409b7db78616ac.tar.bz2
android_external_libxml2-465a000b1080427bd62d89a925409b7db78616ac.zip
fixed an uninitialized variable extended the API to add the parser,
* valid.c: fixed an uninitialized variable * xmlregexp.c include/libxml/xmlregexp.h: extended the API to add the parser, serializer and some debugging * include/libxml/xmlversion.h.in: made the new support compiled by default if Schemas is included * testRegexp.c: cleanup and integration of the first part of the new code with a special switch * xmllint.c: show up Expr in --version if compiled in * include/libxml/tree.h: moved the xmlBuffer definition up Daniel
Diffstat (limited to 'xmllint.c')
-rw-r--r--xmllint.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/xmllint.c b/xmllint.c
index ca94c6cb..65e17b36 100644
--- a/xmllint.c
+++ b/xmllint.c
@@ -2752,6 +2752,9 @@ static void showVersion(const char *name) {
#ifdef LIBXML_REGEXP_ENABLED
fprintf(stderr, "Regexps ");
#endif
+#ifdef LIBXML_EXPR_ENABLED
+ fprintf(stderr, "Expr ");
+#endif
#ifdef LIBXML_AUTOMATA_ENABLED
fprintf(stderr, "Automata ");
#endif