1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-24 08:29:04 +00:00

Typo fix: reponses -> responses

This commit is contained in:
fyodor
2010-01-27 02:05:01 +00:00
parent b1e62c573f
commit d85c8d3603
2 changed files with 3 additions and 3 deletions

View File

@@ -1230,10 +1230,10 @@ pipeline = function(host, port, allReqs)
socket:close()
if count == 0 then
stdnse.print_debug("Received 0 of %d expected reponses.\nGiving up on pipeline.", limit);
stdnse.print_debug("Received 0 of %d expected responses.\nGiving up on pipeline.", limit);
break
elseif count < limit then
stdnse.print_debug("Received only %d of %d expected reponses.\nDecreasing max pipelined requests to %d.", count, limit, count)
stdnse.print_debug("Received only %d of %d expected responses.\nDecreasing max pipelined requests to %d.", count, limit, count)
limit = count
end
end