mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
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:
parent
e74d2e1cb8
commit
5a30b2d11a
@ -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
|
||||
|
@ -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")) ||
|
||||
|
Loading…
x
Reference in New Issue
Block a user