summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorey Farrell <git@cfware.com>2017-12-15 08:56:13 -0500
committerCorey Farrell <git@cfware.com>2017-12-15 07:57:45 -0600
commit044ed1c5d8d56e7375c528d0cfe243665c6851a1 (patch)
treee190f4c1e17ac7f2bb0d146a80231467acbc7006
parent76deae295f9d2d3a317eee3c4596fdcc5af794f8 (diff)
res_smdi: Fix shutdown ref.
When adding shutdown refs for OPTIONAL_API components I accidentally added it to the unload_module function in res_smdi. Move it to load_module. Change-Id: I2b9da38fbc11ef78ea23dbb2df92b684be7f647c
-rw-r--r--res/res_smdi.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/res/res_smdi.c b/res/res_smdi.c
index 0edabb83c..e2b2e1b06 100644
--- a/res/res_smdi.c
+++ b/res/res_smdi.c
@@ -1377,6 +1377,9 @@ static int load_module(void)
ast_custom_function_register(&smdi_msg_retrieve_function);
ast_custom_function_register(&smdi_msg_function);
+ /* For Optional API. */
+ ast_module_shutdown_ref(AST_MODULE_SELF);
+
return AST_MODULE_LOAD_SUCCESS;
}
@@ -1406,9 +1409,6 @@ static int _unload_module(int fromload)
smdi_loaded = 0;
- /* For Optional API. */
- ast_module_shutdown_ref(AST_MODULE_SELF);
-
return 0;
}