From 80f7754d01793b89ebf9a639f1100d2702159f57 Mon Sep 17 00:00:00 2001 From: david Date: Wed, 29 Dec 2010 18:46:18 +0000 Subject: [PATCH] Separate gopher-ls entries with newlines instead of commas. --- scripts/gopher-ls.nse | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/gopher-ls.nse b/scripts/gopher-ls.nse index 8b9a2221b..304c1bb26 100644 --- a/scripts/gopher-ls.nse +++ b/scripts/gopher-ls.nse @@ -54,6 +54,6 @@ action = function( host, port ) end line = buffer() end - return stdnse.strjoin(", ", files) + return "\n" .. stdnse.strjoin("\n", files) end