1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-09 06:01:28 +00:00

Spelling fixes for Lua files

Mostly in documentation/comments, but a couple code bugs were caught,
including a call to stdnse.pirnt_debug and a mis-declared variable.
This commit is contained in:
dmiller
2014-02-19 04:15:46 +00:00
parent 54fa265f5c
commit 1b71f75aad
202 changed files with 532 additions and 532 deletions

View File

@@ -31,7 +31,7 @@ Helper = {
-- Handles send and receive of control messages
-- @param data string containing the command to send
-- @return status true on succes, false on failure
-- @return status true on success, false on failure
-- @return data containing the response from the server
-- err string, if status is false
ctrl_exch = function(self, data)
@@ -103,7 +103,7 @@ Helper = {
end
if ( data == "@RSYNCD: OK" ) then
return true, "Authentication successfull"
return true, "Authentication successful"
end
return false, "Authentication failed"
end,