aboutsummaryrefslogtreecommitdiff
path: root/src/mod_stream_mgmt.erl
diff options
context:
space:
mode:
authorStu Tomlinson <stu@nosnilmot.com>2020-09-03 12:45:57 +0100
committerGitHub <noreply@github.com>2020-09-03 13:45:57 +0200
commitbd11a00f8fb003d60a9002385c140bb6e3c64ea4 (patch)
tree93402c799b677063f2e683df5b7ab900d260ca20 /src/mod_stream_mgmt.erl
parentUpdate xmpp dep (diff)
Use include_lib() to include headers from dependencies (#3369)
Diffstat (limited to 'src/mod_stream_mgmt.erl')
-rw-r--r--src/mod_stream_mgmt.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mod_stream_mgmt.erl b/src/mod_stream_mgmt.erl
index ee72e152f..ebd980e45 100644
--- a/src/mod_stream_mgmt.erl
+++ b/src/mod_stream_mgmt.erl
@@ -37,9 +37,9 @@
%% adjust pending session timeout / access queue
-export([get_resume_timeout/1, set_resume_timeout/2, queue_find/2]).
--include("xmpp.hrl").
+-include_lib("xmpp/include/xmpp.hrl").
-include("logger.hrl").
--include("p1_queue.hrl").
+-include_lib("p1_utils/include/p1_queue.hrl").
-include("translate.hrl").
-define(STREAM_MGMT_CACHE, stream_mgmt_cache).