summaryrefslogtreecommitdiff
path: root/res/res_monitor.c
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2006-10-21 18:50:38 +0000
committerRussell Bryant <russell@russellbryant.com>2006-10-21 18:50:38 +0000
commitd60f37384eb5efe924baceb2fffce6043651b8f8 (patch)
tree44953f9ba253eb57c664c7627679f6c3b47b1cd7 /res/res_monitor.c
parent70ee76d64bc9e18ec1bde4787f8dc64bcb4d7f23 (diff)
Merged revisions 45818 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r45818 | russell | 2006-10-21 14:49:46 -0400 (Sat, 21 Oct 2006) | 3 lines Add a couple missing unregistrations of manager actions and remove duplicate unregistrations of applications. (issue #8194, jmls) ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@45819 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res/res_monitor.c')
-rw-r--r--res/res_monitor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/res/res_monitor.c b/res/res_monitor.c
index 793921b42..9d7399934 100644
--- a/res/res_monitor.c
+++ b/res/res_monitor.c
@@ -659,8 +659,8 @@ static int unload_module(void)
ast_manager_unregister("Monitor");
ast_manager_unregister("StopMonitor");
ast_manager_unregister("ChangeMonitor");
- ast_unregister_application("PauseMonitor");
- ast_unregister_application("UnpauseMonitor");
+ ast_manager_unregister("PauseMonitor");
+ ast_manager_unregister("UnpauseMonitor");
return 0;
}