some flags were not passed down correctly as parsing options. Fixes

* xmllint.c: some flags were not passed down correctly as
  parsing options. Fixes #126806
Daniel
This commit is contained in:
Daniel Veillard 2003-12-09 13:54:39 +00:00
parent e74d2e1cb8
commit 5a30b2d11a
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,8 @@
Tue Dec 9 14:52:59 CET 2003 Daniel Veillard <daniel@veillard.com>
* xmllint.c: some flags were not passed down correctly as
parsing options. Fixes #126806
Tue Dec 9 12:29:26 CET 2003 Daniel Veillard <daniel@veillard.com>
* xinclude.c xmllint.c xmlreader.c include/libxml/xinclude.h

View File

@ -1611,16 +1611,19 @@ main(int argc, char **argv) {
(!strcmp(argv[i], "--postvalid"))) {
postvalid++;
loaddtd++;
options |= XML_PARSE_DTDLOAD;
} else if ((!strcmp(argv[i], "-dtdvalid")) ||
(!strcmp(argv[i], "--dtdvalid"))) {
i++;
dtdvalid = argv[i];
loaddtd++;
options |= XML_PARSE_DTDLOAD;
} else if ((!strcmp(argv[i], "-dtdvalidfpi")) ||
(!strcmp(argv[i], "--dtdvalidfpi"))) {
i++;
dtdvalidfpi = argv[i];
loaddtd++;
options |= XML_PARSE_DTDLOAD;
}
#endif /* LIBXML_VALID_ENABLED */
else if ((!strcmp(argv[i], "-dropdtd")) ||