diff options
author | Kim Alvefur <zash@zash.se> | 2018-11-17 16:26:40 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-11-17 16:26:40 +0100 |
commit | 72decbc631b15f0c583c81395a52e6ccdc5bd728 (patch) | |
tree | c48313c12b1cc8d26da1e9e0b98b0bf8be79499d /net | |
parent | 320392f1d11e27b89f8ce0556812465c1bf1ed40 (diff) | |
download | prosody-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.lua | 2 |
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"; |