diff options
author | Matthew Wild <mwild1@gmail.com> | 2012-02-11 14:51:00 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2012-02-11 14:51:00 +0000 |
commit | fa30c62a6abcead910e0ea85529a0225d7a16e41 (patch) | |
tree | 32c4f7c09b9a30513a0507f570b43d879cde1c5c | |
parent | 6448e03b74dbc86ba12870e4166a139a475196b0 (diff) | |
download | prosody-fa30c62a6abcead910e0ea85529a0225d7a16e41.tar.gz prosody-fa30c62a6abcead910e0ea85529a0225d7a16e41.zip |
hostmanager: Import jid_split (thanks chris)
-rw-r--r-- | core/hostmanager.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/hostmanager.lua b/core/hostmanager.lua index 0dd1d426..7edf8230 100644 --- a/core/hostmanager.lua +++ b/core/hostmanager.lua @@ -12,6 +12,7 @@ local events_new = require "util.events".new; local disco_items = require "util.multitable".new(); local NULL = {}; +local jid_split = require "util.jid".split; local uuid_gen = require "util.uuid".generate; local log = require "util.logger".init("hostmanager"); |