mirror of
https://github.com/nmap/nmap.git
synced 2026-01-01 12:29:03 +00:00
Fix format string argument mismatches
Cases where the format string does not contain any placeholders, but values are given anyway. Cases where string.format is used without any placeholders or arguments.
This commit is contained in:
@@ -170,7 +170,7 @@ JDWPReplyPacket = {
|
||||
if flags == 0x80 then
|
||||
return true, JDWPReplyPacket:new(length,id,error_code,data)
|
||||
end
|
||||
stdnse.debug2("JDWP error parsing reply. Wrong reply packet flag. Raw data: ", stdnse.tohex(reply_packet))
|
||||
stdnse.debug2("JDWP error parsing reply. Wrong reply packet flag. Raw data: %s", stdnse.tohex(reply_packet))
|
||||
return false, "JDWP error parsing reply."
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user