mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
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:
parent
3d3e0fa082
commit
589010b407
1 changed files with 1 additions and 1 deletions
|
@ -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";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue