diff --git a/nselib/http.lua b/nselib/http.lua index a9ba690f2..ff45a61b0 100644 --- a/nselib/http.lua +++ b/nselib/http.lua @@ -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