1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-07 21:21:31 +00:00

Whitespace fixes: removed trailing whitespaces, always use tabs for indentation.

This commit is contained in:
henri
2011-11-07 21:32:43 +00:00
parent b66a4849c4
commit f181470fac

View File

@@ -42,7 +42,7 @@ Driver = {
setmetatable(o, self)
self.__index = self
return o
end,
end,
-- connects to the rlogin service
-- it sets the source port to a random value between 513 and 1024
@@ -88,8 +88,8 @@ Driver = {
end
if ( data ~= "\0" ) then
stdnse.print_debug(2, "ERROR: Expected null byte")
local err = brute.Error:new( "Expected null byte" )
err:setRetry( true )
local err = brute.Error:new( "Expected null byte" )
err:setRetry( true )
return false, err
end
@@ -101,8 +101,8 @@ Driver = {
end
if ( data ~= "Password: " ) then
stdnse.print_debug(2, "ERROR: Expected password prompt")
local err = brute.Error:new( "Expected password prompt" )
err:setRetry( true )
local err = brute.Error:new( "Expected password prompt" )
err:setRetry( true )
return false, err
end