aboutsummaryrefslogtreecommitdiffstats
path: root/funcs/func_sha1.c
diff options
context:
space:
mode:
Diffstat (limited to 'funcs/func_sha1.c')
-rw-r--r--funcs/func_sha1.c15
1 files changed, 6 insertions, 9 deletions
diff --git a/funcs/func_sha1.c b/funcs/func_sha1.c
index d2b5ad882..8a9fabfd0 100644
--- a/funcs/func_sha1.c
+++ b/funcs/func_sha1.c
@@ -71,27 +71,24 @@ static struct ast_custom_function sha1_function = {
static char *tdesc = "SHA-1 computation dialplan function";
-int unload_module(void)
+static int unload_module(void *mod)
{
return ast_custom_function_unregister(&sha1_function);
}
-int load_module(void)
+static int load_module(void *mod)
{
return ast_custom_function_register(&sha1_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);