aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_math.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-10-18 22:52:21 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-10-18 22:52:21 +0000
commit2c83f05ebb3060c268c396b5c5fe6a6f7f20a638 (patch)
tree20630ce6a7b373291da39670c360ee680603aed4 /apps/app_math.c
parent01ddee76b0828acb3407d556191b7ca60fb73fea (diff)
it's a good idea to unregister everything before calling STANDARD_HANGUP_LOCALUSERS
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@6828 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_math.c')
-rwxr-xr-xapps/app_math.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/app_math.c b/apps/app_math.c
index 201882aad..225c929df 100755
--- a/apps/app_math.c
+++ b/apps/app_math.c
@@ -258,17 +258,17 @@ static int math_exec(struct ast_channel *chan, void *data)
int unload_module(void)
{
int res;
+
+ res = ast_unregister_application(app_math);
+
STANDARD_HANGUP_LOCALUSERS;
- res = ast_unregister_application(app_math);
return res;
}
int load_module(void)
{
- int res;
- res = ast_register_application(app_math, math_exec, math_synopsis, math_descrip);
- return res;
+ return ast_register_application(app_math, math_exec, math_synopsis, math_descrip);
}
char *description(void)