1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-06 04:31:29 +00:00

Fix a typo in calling stdnse.format_ouptut(). See #2622

This commit is contained in:
nnposter
2024-07-04 20:31:02 +00:00
parent a0d24d0518
commit 92995af023

View File

@@ -245,7 +245,7 @@ local function process_instance( instance )
instanceOutput["name"] = string.format( "[%s]", instance:GetName() )
table.insert( instanceOutput, output )
return stdnse.format_ouptut(true, instanceOutput)
return stdnse.format_output(true, instanceOutput)
end