summaryrefslogtreecommitdiff
path: root/apps/app_osplookup.c
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2005-10-18 22:52:21 +0000
committerRussell Bryant <russell@russellbryant.com>2005-10-18 22:52:21 +0000
commit29829640bf10b2d517c1aed12cc31deb5897285c (patch)
tree20630ce6a7b373291da39670c360ee680603aed4 /apps/app_osplookup.c
parent907fd55883aefce1a753e9910bacf845bb6ff71f (diff)
it's a good idea to unregister everything before calling STANDARD_HANGUP_LOCALUSERS
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6828 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_osplookup.c')
-rwxr-xr-xapps/app_osplookup.c19
1 files changed, 9 insertions, 10 deletions
diff --git a/apps/app_osplookup.c b/apps/app_osplookup.c
index dfd819d2b..d141ae14e 100755
--- a/apps/app_osplookup.c
+++ b/apps/app_osplookup.c
@@ -243,26 +243,25 @@ static int ospfinished_exec(struct ast_channel *chan, void *data)
int unload_module(void)
{
int res;
- STANDARD_HANGUP_LOCALUSERS;
+
res = ast_unregister_application(app3);
res |= ast_unregister_application(app2);
res |= ast_unregister_application(app);
+
+ STANDARD_HANGUP_LOCALUSERS;
+
return res;
}
int load_module(void)
{
int res;
+
res = ast_register_application(app, osplookup_exec, synopsis, descrip);
- if (res)
- return(res);
- res = ast_register_application(app2, ospnext_exec, synopsis2, descrip2);
- if (res)
- return(res);
- res = ast_register_application(app3, ospfinished_exec, synopsis3, descrip3);
- if (res)
- return(res);
- return(0);
+ res |= ast_register_application(app2, ospnext_exec, synopsis2, descrip2);
+ res |= ast_register_application(app3, ospfinished_exec, synopsis3, descrip3);
+
+ return res;
}
int reload(void)