aboutsummaryrefslogtreecommitdiffstats
path: root/funcs/func_md5.c
diff options
context:
space:
mode:
Diffstat (limited to 'funcs/func_md5.c')
-rw-r--r--funcs/func_md5.c15
1 files changed, 6 insertions, 9 deletions
diff --git a/funcs/func_md5.c b/funcs/func_md5.c
index 5455694d8..e05e0141d 100644
--- a/funcs/func_md5.c
+++ b/funcs/func_md5.c
@@ -106,29 +106,26 @@ static struct ast_custom_function checkmd5_function = {
static char *tdesc = "MD5 digest dialplan functions";
-int unload_module(void)
+static int unload_module(void *mod)
{
return ast_custom_function_unregister(&md5_function) |
ast_custom_function_unregister(&checkmd5_function);
}
-int load_module(void)
+static int load_module(void *mod)
{
return ast_custom_function_register(&md5_function) |
ast_custom_function_register(&checkmd5_function);
}
-const char *description(void)
+static const char *description(void)
{
return tdesc;
}
-int usecount(void)
-{
- return 0;
-}
-
-const char *key()
+static const char *key(void)
{
return ASTERISK_GPL_KEY;
}
+
+STD_MOD(MOD_1 | NO_USECOUNT, NULL, NULL, NULL);