mirror of
https://github.com/nmap/nmap.git
synced 2026-08-04 06:40:48 +00:00
\x is not a valid escape sequence...
This commit is contained in:
parent
bf51635ae3
commit
c4d6d12be7
1 changed files with 1 additions and 1 deletions
|
|
@ -1151,7 +1151,7 @@ function makeStringReadable(data)
|
|||
if x > 31 and x <127 then
|
||||
r = r .. data:sub(i,i)
|
||||
else
|
||||
r = r .. ("\x%x"):format(x)
|
||||
r = r .. ("\\x%x"):format(x)
|
||||
end
|
||||
end
|
||||
return r
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue