aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_groupcount.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/app_groupcount.c')
-rwxr-xr-xapps/app_groupcount.c13
1 files changed, 9 insertions, 4 deletions
diff --git a/apps/app_groupcount.c b/apps/app_groupcount.c
index 63702bbf4..493070f42 100755
--- a/apps/app_groupcount.c
+++ b/apps/app_groupcount.c
@@ -267,23 +267,28 @@ static struct ast_cli_entry cli_show_channels =
int unload_module(void)
{
int res;
- STANDARD_HANGUP_LOCALUSERS;
- ast_cli_unregister(&cli_show_channels);
- res = ast_unregister_application(app_group_count);
+
+ res = ast_cli_unregister(&cli_show_channels);
+ res |= ast_unregister_application(app_group_count);
res |= ast_unregister_application(app_group_set);
res |= ast_unregister_application(app_group_check);
res |= ast_unregister_application(app_group_match_count);
+
+ STANDARD_HANGUP_LOCALUSERS;
+
return res;
}
int load_module(void)
{
int res;
+
res = ast_register_application(app_group_count, group_count_exec, group_count_synopsis, group_count_descrip);
res |= ast_register_application(app_group_set, group_set_exec, group_set_synopsis, group_set_descrip);
res |= ast_register_application(app_group_check, group_check_exec, group_check_synopsis, group_check_descrip);
res |= ast_register_application(app_group_match_count, group_match_count_exec, group_match_count_synopsis, group_match_count_descrip);
- ast_cli_register(&cli_show_channels);
+ res |= ast_cli_register(&cli_show_channels);
+
return res;
}