From 4ebacc1d0018a3caf39da9023efefe149ef8f253 Mon Sep 17 00:00:00 2001 From: Russell Bryant Date: Sat, 21 Oct 2006 18:49:46 +0000 Subject: [PATCH] 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/branches/1.4@45818 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- res/res_monitor.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/res/res_monitor.c b/res/res_monitor.c index ebac350f80..4a71a92be5 100644 --- a/res/res_monitor.c +++ b/res/res_monitor.c @@ -658,8 +658,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; }