summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorey Farrell <git@cfware.com>2017-11-20 14:05:46 -0500
committerCorey Farrell <git@cfware.com>2017-11-21 11:30:49 -0500
commit2bff38b8a83456dd794dca6f751d52c2f87df420 (patch)
tree867d0aa6102206ff984181fcd5c4db0b86acaabe
parent3d429a50722287c147cc428c551066bebd2ea2f5 (diff)
res_parking: Make load_pri explicit.
res_parking has an implicit load_pri of 0 meaining it's one of the very first modules loaded after modules with global symbols. Set it explicitly in the AST_MODULE_INFO block. Change-Id: I297b6fb3ff6993ec004e667b22a74f5925906259
-rw-r--r--res/res_parking.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/res/res_parking.c b/res/res_parking.c
index fbe256c93..593134b60 100644
--- a/res/res_parking.c
+++ b/res/res_parking.c
@@ -1300,4 +1300,5 @@ AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_LOAD_ORDER, "Call Parking Resource
.load = load_module,
.unload = unload_module,
.reload = reload_module,
+ .load_pri = 0,
);