aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeniy Khramtsov <ekhramtsov@process-one.net>2017-01-02 14:45:52 +0300
committerEvgeniy Khramtsov <ekhramtsov@process-one.net>2017-01-02 14:45:52 +0300
commit3dd2a614ace3c2fe4c82dac001c29d643bd57098 (patch)
tree0d0ae2ebe2bf97af021ab461a279aa0a633005bf
parentBetter cope with IPv6 domains (diff)
Get rid of "jlib.hrl" header in some files
-rw-r--r--src/ejabberd_bosh.erl2
-rw-r--r--src/mod_muc_mnesia.erl2
-rw-r--r--src/mod_muc_riak.erl2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/ejabberd_bosh.erl b/src/ejabberd_bosh.erl
index b94184167..e032f1bbe 100644
--- a/src/ejabberd_bosh.erl
+++ b/src/ejabberd_bosh.erl
@@ -49,7 +49,7 @@
-include("ejabberd.hrl").
-include("logger.hrl").
--include("jlib.hrl").
+-include("xmpp.hrl").
-include("ejabberd_http.hrl").
diff --git a/src/mod_muc_mnesia.erl b/src/mod_muc_mnesia.erl
index 8f570746c..6464d4312 100644
--- a/src/mod_muc_mnesia.erl
+++ b/src/mod_muc_mnesia.erl
@@ -17,7 +17,7 @@
-export([set_affiliation/6, set_affiliations/4, get_affiliation/5,
get_affiliations/3, search_affiliation/4]).
--include("jlib.hrl").
+-include("jid.hrl").
-include("mod_muc.hrl").
-include("logger.hrl").
diff --git a/src/mod_muc_riak.erl b/src/mod_muc_riak.erl
index ada08ace6..d88092152 100644
--- a/src/mod_muc_riak.erl
+++ b/src/mod_muc_riak.erl
@@ -17,7 +17,7 @@
-export([set_affiliation/6, set_affiliations/4, get_affiliation/5,
get_affiliations/3, search_affiliation/4]).
--include("jlib.hrl").
+-include("jid.hrl").
-include("mod_muc.hrl").
%%%===================================================================