1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-03-10 08:58:16 +03:00

applied a fix from Anthony Jones for -o /--output Daniel

* xmllint.c: applied a fix from Anthony Jones for -o /--output
Daniel
This commit is contained in:
Daniel Veillard 2002-04-09 09:55:20 +00:00
parent 823e5b2a99
commit 6e4f1c0e69
2 changed files with 6 additions and 3 deletions

View File

@ -1,7 +1,10 @@
Tue Apr 9 11:51:25 CEST 2002 Daniel Veillard <daniel@veillard.com>
* xmllint.c: applied a fix from Anthony Jones for -o /--output
Tue Apr 2 20:27:11 MST 2002 John Fleck <jfleck@inkstain.net>
* doc/example.html
fixing typo
* doc/example.html: fixing typo
Mon Apr 1 10:02:57 CEST 2002 Daniel Veillard <daniel@veillard.com>

View File

@ -1066,7 +1066,7 @@ main(int argc, char **argv) {
(!strcmp(argv[i], "-output")) ||
(!strcmp(argv[i], "--output"))) {
i++;
output = argv[i++];
output = argv[i];
}
else if ((!strcmp(argv[i], "-htmlout")) ||
(!strcmp(argv[i], "--htmlout")))