aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-11-17 16:26:40 +0100
committerKim Alvefur <zash@zash.se>2018-11-17 16:26:40 +0100
commit72decbc631b15f0c583c81395a52e6ccdc5bd728 (patch)
treec48313c12b1cc8d26da1e9e0b98b0bf8be79499d /net
parent320392f1d11e27b89f8ce0556812465c1bf1ed40 (diff)
downloadprosody-72decbc631b15f0c583c81395a52e6ccdc5bd728.tar.gz
prosody-72decbc631b15f0c583c81395a52e6ccdc5bd728.zip
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.
Diffstat (limited to 'net')
-rw-r--r--net/server_select.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/server_select.lua b/net/server_select.lua
index bc86742c..1a40a6d3 100644
--- a/net/server_select.lua
+++ b/net/server_select.lua
@@ -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";