From 06a25384b65205bc8cad1421922b72e6567a04b3 Mon Sep 17 00:00:00 2001 From: nnposter Date: Tue, 27 Sep 2016 16:01:39 +0000 Subject: [PATCH] Fixes additional stale pipeline_go references --- nselib/http.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nselib/http.lua b/nselib/http.lua index 360fa1a07..b99addf91 100644 --- a/nselib/http.lua +++ b/nselib/http.lua @@ -20,7 +20,7 @@ -- -- If a script is planning on making a lot of requests, the pipelining functions can -- be helpful. pipeline_add queues requests in a table, and --- pipeline performs the requests, returning the results as an array, +-- pipeline_go performs the requests, returning the results as an array, -- with the responses in the same order as the queries were added. As a simple example: -- -- -- Start by defining the 'all' variable as nil @@ -2611,7 +2611,7 @@ end ---Check if the response variable contains the given text. -- -- Response variable could be a return from a http.get, http.post, --- http.pipeline, etc. The text can be: +-- http.pipeline_go, etc. The text can be: -- * Part of a header ('content-type', 'text/html', '200 OK', etc) -- * An entire header ('Content-type: text/html', 'Content-length: 123', etc) -- * Part of the body