aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xprosody2
1 files changed, 1 insertions, 1 deletions
diff --git a/prosody b/prosody
index b1740f27..45ee5983 100755
--- a/prosody
+++ b/prosody
@@ -123,7 +123,7 @@ end
-- start listening on sockets
local function do_ports(option, listener, default, conntype)
local ports = config.get("*", "core", option) or default;
- --if type(ports) == "number" then ports = {ports} end;
+ if type(ports) == "number" then ports = {ports} end;
if type(ports) ~= "table" then
log("error", "core."..option.." is not a table");