From a2dcbb7cd5f37e1674b2eac953c75b6a84d4decc Mon Sep 17 00:00:00 2001 From: joao Date: Sat, 15 Aug 2009 14:32:17 +0000 Subject: [PATCH] Fixing a bug where getPipelineMax was not returning any value, when it sould, at least, return 1. --- nselib/http.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nselib/http.lua b/nselib/http.lua index f3d5d0833..34d1744ed 100644 --- a/nselib/http.lua +++ b/nselib/http.lua @@ -283,8 +283,8 @@ local function getPipelineMax( response ) return max else return 40 end end - return 1 end + return 1 end --- Sets all the values and options for a get request and than calls buildRequest to