From 92995af023df9b9423234d3cae37c6706816ebe0 Mon Sep 17 00:00:00 2001 From: nnposter Date: Thu, 4 Jul 2024 20:31:02 +0000 Subject: [PATCH] Fix a typo in calling stdnse.format_ouptut(). See #2622 --- scripts/ms-sql-tables.nse | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ms-sql-tables.nse b/scripts/ms-sql-tables.nse index caf0a822a..45f32c554 100644 --- a/scripts/ms-sql-tables.nse +++ b/scripts/ms-sql-tables.nse @@ -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