diff options
author | Matthew Wild <mwild1@gmail.com> | 2010-07-04 19:15:20 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2010-07-04 19:15:20 +0100 |
commit | 9ca26d127bac2f41f480305a3f8d4ad5b2a895a0 (patch) | |
tree | c51d36812235bb7302311582c8de45da783667c5 | |
parent | ee6c70ee5265230b092b351e5f6a284700827f23 (diff) | |
download | prosody-9ca26d127bac2f41f480305a3f8d4ad5b2a895a0.tar.gz prosody-9ca26d127bac2f41f480305a3f8d4ad5b2a895a0.zip |
xmppcomponent_listener: Import jid_split to fix undefined global reference
-rw-r--r-- | net/xmppcomponent_listener.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/xmppcomponent_listener.lua b/net/xmppcomponent_listener.lua index 2bf77fb6..de1dca45 100644 --- a/net/xmppcomponent_listener.lua +++ b/net/xmppcomponent_listener.lua @@ -18,6 +18,7 @@ local connlisteners = require "net.connlisteners"; local cm_register_component = require "core.componentmanager".register_component; local cm_deregister_component = require "core.componentmanager".deregister_component; local uuid_gen = require "util.uuid".generate; +local jid_split = require "util.jid".split; local sha1 = require "util.hashes".sha1; local st = require "util.stanza"; local init_xmlhandlers = require "core.xmlhandlers"; |