1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-27 09:59:04 +00:00

Avoid format-string bugs. Fixes #2634

This commit is contained in:
dmiller
2023-07-20 17:24:16 +00:00
parent 7f435acec9
commit 1a7a96274a
9 changed files with 54 additions and 54 deletions

View File

@@ -69,7 +69,7 @@ OSPF = {
header.auth_data.hash = hash
else
-- Shouldn't happen
stdnse.debug1("Unknown authentication type " .. header.auth_type)
stdnse.debug1("Unknown authentication type %s", header.auth_type)
return nil
end
header.router_id = ipOps.fromdword(header.router_id)