From 990cb8965db636eee092d7c3a85980463bc7a052 Mon Sep 17 00:00:00 2001 From: batrick Date: Tue, 11 Aug 2009 05:56:41 +0000 Subject: [PATCH] Removed unused bopt variable. --- nselib/http.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nselib/http.lua b/nselib/http.lua index dda86f808..49ae64d56 100644 --- a/nselib/http.lua +++ b/nselib/http.lua @@ -423,9 +423,9 @@ request = function( host, port, data, options ) local response = {} local result = {status=nil,["status-line"]=nil,header={},body=""} - local socket, bopt + local socket - socket, response[1], bopt = comm.tryssl(host, port, data, opts) + socket, response[1] = comm.tryssl(host, port, data, opts) if not socket or not response then return result