mirror of
https://github.com/nmap/nmap.git
synced 2026-08-04 14:49:29 +00:00
Fix the XML stylesheet processing instruction. It read "test/xsl"
instead of "text/xsl". This was reported by Grant Bartlett.
This commit is contained in:
parent
25c56e7fa0
commit
238e0107f5
1 changed files with 1 additions and 1 deletions
2
nmap.cc
2
nmap.cc
|
|
@ -1579,7 +1579,7 @@ int nmap_main(int argc, char *argv[]) {
|
|||
if (xslfname) {
|
||||
xml_open_pi("xml-stylesheet");
|
||||
xml_attribute("href", "%s", xslfname);
|
||||
xml_attribute("type", "test/xsl");
|
||||
xml_attribute("type", "text/xsl");
|
||||
xml_close_pi();
|
||||
xml_newline();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue