1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-26 17:39:03 +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

@@ -1993,7 +1993,7 @@ function pipeline_go(host, port, all_requests)
stdnse.debug1("Warning: empty set of requests passed to http.pipeline_go()")
return responses
end
stdnse.debug1("HTTP pipeline: Total number of requests: " .. #all_requests)
stdnse.debug1("HTTP pipeline: Total number of requests: %d", #all_requests)
-- We'll try a first request with keep-alive, just to check if the server
-- supports it and how many requests we can send into one socket