mirror of
https://github.com/nmap/nmap.git
synced 2026-08-04 06:40:48 +00:00
remove unnecessary escape
This commit is contained in:
parent
49c3b4e84e
commit
b2f3139284
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue