summaryrefslogtreecommitdiff
path: root/apps/app_test.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_test.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_test.c')
-rwxr-xr-xapps/app_test.c17
1 files changed, 13 insertions, 4 deletions
diff --git a/apps/app_test.c b/apps/app_test.c
index e1ffdba8b..4ded538d3 100755
--- a/apps/app_test.c
+++ b/apps/app_test.c
@@ -488,15 +488,24 @@ static int testserver_exec(struct ast_channel *chan, void *data)
int unload_module(void)
{
+ int res;
+
+ res = ast_unregister_application(testc_app);
+ res |= ast_unregister_application(tests_app);
+
STANDARD_HANGUP_LOCALUSERS;
- ast_unregister_application(testc_app);
- return ast_unregister_application(tests_app);
+
+ return res;
}
int load_module(void)
{
- ast_register_application(testc_app, testclient_exec, testc_synopsis, testc_descrip);
- return ast_register_application(tests_app, testserver_exec, tests_synopsis, tests_descrip);
+ int res;
+
+ res = ast_register_application(testc_app, testclient_exec, testc_synopsis, testc_descrip);
+ res |= ast_register_application(tests_app, testserver_exec, tests_synopsis, tests_descrip);
+
+ return res;
}
char *description(void)