# HG changeset patch # User Matthew Wild # Date 1264952695 0 # Node ID b2cb0935f15828cb3e773e61d9e84ed99a282190 # Parent cadfb455a00cfa63bc7ef6cde6a7908f97d0d808 net.connlisteners: Remove redundant variable declaration diff -r cadfb455a00c -r b2cb0935f158 net/connlisteners.lua --- a/net/connlisteners.lua Sun Jan 31 15:44:05 2010 +0000 +++ b/net/connlisteners.lua Sun Jan 31 15:44:55 2010 +0000 @@ -57,7 +57,6 @@ local port = (udata and udata.port) or h.default_port or error("Can't start listener "..name.." because no port was specified, and it has no default port", 0); local mode = (udata and udata.mode) or h.default_mode or 1; local ssl = (udata and udata.ssl) or nil; - local maxclients = 99999999; local autossl = udata and udata.type == "ssl"; return server.addserver(interface, port, h, mode, autossl and ssl or nil);