From b2f31392849e670d862c0826ddb4a8af4644ea74 Mon Sep 17 00:00:00 2001 From: batrick Date: Fri, 30 Mar 2012 03:14:31 +0000 Subject: [PATCH] remove unnecessary escape --- nselib/http.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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