Software /
code /
prosody
Diff
net/server_select.lua @ 9634:f457edaab510 0.11
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.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sat, 17 Nov 2018 16:26:40 +0100 |
parent | 9499:36e379f058c8 |
child | 9635:fc2266339cd8 |
child | 11063:30d3f6f85eb8 |
line wrap: on
line diff
--- a/net/server_select.lua Sat Nov 17 15:36:10 2018 +0100 +++ b/net/server_select.lua Sat Nov 17 16:26:40 2018 +0100 @@ -1009,7 +1009,7 @@ 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";