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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user