summaryrefslogtreecommitdiff
path: root/funcs/func_callcompletion.c
diff options
context:
space:
mode:
Diffstat (limited to 'funcs/func_callcompletion.c')
-rw-r--r--funcs/func_callcompletion.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/funcs/func_callcompletion.c b/funcs/func_callcompletion.c
index ed5238c1f..37ba38ce4 100644
--- a/funcs/func_callcompletion.c
+++ b/funcs/func_callcompletion.c
@@ -126,4 +126,9 @@ static int load_module(void)
return ast_custom_function_register(&cc_function) == 0 ? AST_MODULE_LOAD_SUCCESS : AST_MODULE_LOAD_DECLINE;
}
-AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Call Control Configuration Function");
+AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_DEFAULT, "Call Control Configuration Function",
+ .support_level = AST_MODULE_SUPPORT_CORE,
+ .load = load_module,
+ .unload = unload_module,
+ .requires = "ccss",
+);