From 4cedcef5759a3276b4f3db7b882fdeef4d24aded Mon Sep 17 00:00:00 2001 From: henri Date: Sun, 21 Oct 2012 22:56:54 +0000 Subject: [PATCH] Separate engine names by spaces instead of commas for consistency with the other lines produced by nmap -V --- nsock/src/nsock_engines.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nsock/src/nsock_engines.c b/nsock/src/nsock_engines.c index 902e9c599..f7d107580 100644 --- a/nsock/src/nsock_engines.c +++ b/nsock/src/nsock_engines.c @@ -131,7 +131,7 @@ int nsock_set_default_engine(char *engine) { const char *nsock_list_engines(void) { return #if HAVE_EPOLL - "epoll," + "epoll " #endif "select"; }