1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-06 04:31:29 +00:00

Fix some CRLF line endings to LF

This commit is contained in:
dmiller
2014-04-17 19:50:24 +00:00
parent 9ca584d0b8
commit 6bd9462dd6
3 changed files with 753 additions and 753 deletions

View File

@@ -44,7 +44,7 @@ function decode_xml_document(xmldata)
hexval = escaped_val:match("(%d+)") hexval = escaped_val:match("(%d+)")
if ( hexval ) then if ( hexval ) then
newstr, _ = newstr:gsub(escaped_val, string.char(hexval)) newstr = newstr:gsub(escaped_val, string.char(hexval))
end end
end end