1
0
mirror of https://github.com/nmap/nmap.git synced 2026-02-06 21:46:34 +00:00

remove unnecessary escape

This commit is contained in:
batrick
2012-03-30 03:14:31 +00:00
parent 49c3b4e84e
commit b2f3139284

View File

@@ -855,7 +855,7 @@ local function getPipelineMax(response)
if response then
if response.header and response.header.connection ~= "close" then
if response.header["keep-alive"] then
local max = string.match( response.header["keep-alive"], "max\=(%d*)")
local max = string.match( response.header["keep-alive"], "max=(%d*)")
if(max == nil) then
return 40
end