1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-28 10:29:03 +00:00

o [NSE] Fixed a bunch of global access errors in various libraries reported by

the nse_check_globals script. [Patrik]
This commit is contained in:
patrik
2012-01-30 23:13:35 +00:00
parent 2ff581affa
commit af3734f41f
9 changed files with 19 additions and 16 deletions

View File

@@ -310,7 +310,7 @@ Helper = {
createSession = function(self, auth_names, authr_names, disp_no)
local info = nmap.get_interface_info(self.host.interface)
if ( not(info) ) then
return false, ("Failed to get information for interface %s"):format(host.interface)
return false, ("Failed to get information for interface %s"):format(self.host.interface)
end
local req = xdmcp.Packet[xdmcp.OpCode.QUERY]:new(auth_names)