1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-08 23:49:03 +00:00

Removed unused bopt variable.

This commit is contained in:
batrick
2009-08-11 05:56:41 +00:00
parent 6bbfb06704
commit 990cb8965d

View File

@@ -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