diff options
author | Matthew Wild <mwild1@gmail.com> | 2014-09-02 17:23:44 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2014-09-02 17:23:44 +0100 |
commit | 69d97b4f7ed15249ce71a5b261bff98a008684aa (patch) | |
tree | 379f02441feaf82e1d573d9c55bd7781d1ecbfe0 /net | |
parent | 899b6d53ae45cae3ed7dbe9dfbca31c1ab812db3 (diff) | |
download | prosody-69d97b4f7ed15249ce71a5b261bff98a008684aa.tar.gz prosody-69d97b4f7ed15249ce71a5b261bff98a008684aa.zip |
net.server_select: 'listener'->'listeners' (fixes undefined global access)
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 2b23b4f0..7ac41523 100644 --- a/net/server_select.lua +++ b/net/server_select.lua @@ -284,7 +284,7 @@ wrapconnection = function( server, listeners, socket, ip, serverport, clientport local status = listeners.onstatus local disconnect = listeners.ondisconnect local drain = listeners.ondrain - local detach = listener.ondetach + local detach = listeners.ondetach local bufferqueue = { } -- buffer array local bufferqueuelen = 0 -- end of buffer array |