net.server_select: Fix IP validation to use correct variable (thanks quest)

Copy-paste mistake most likely. Not caught because server_select is ignored by luacheck.
This commit is contained in:
Kim Alvefur 2018-11-17 16:26:40 +01:00
parent 3d3e0fa082
commit 589010b407

View file

@ -1009,7 +1009,7 @@ local addclient = function( address, port, listeners, pattern, sslctx, typ )
err = "luasec not found"
end
if not typ then
local n = inet_pton(addr);
local n = inet_pton(address);
if not n then return nil, "invalid-ip"; end
if #n == 16 then
typ = "tcp6";