summaryrefslogtreecommitdiff
path: root/apps/app_queue.c
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2008-03-28 00:55:47 +0000
committerJoshua Colp <jcolp@digium.com>2008-03-28 00:55:47 +0000
commitcafce80cd52ada3e9e64935c8b015f98231cef00 (patch)
tree3886746fdf3b2acea354c2225bc60ce4766df00d /apps/app_queue.c
parent0f8f6e239e76695d6e8c8544ab552b9fb93612f5 (diff)
Forgetting to unregister a manager action is bad, mmmk?
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@111565 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps/app_queue.c')
-rw-r--r--apps/app_queue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_queue.c b/apps/app_queue.c
index ca67f0a9f..3fd69c775 100644
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -6190,7 +6190,7 @@ static int unload_module(void)
ast_cli_unregister_multiple(cli_queue, sizeof(cli_queue) / sizeof(struct ast_cli_entry));
res = ast_manager_unregister("QueueStatus");
res |= ast_manager_unregister("Queues");
- res |= ast_manager_unregister("QueueStatus");
+ res |= ast_manager_unregister("QueueRule");
res |= ast_manager_unregister("QueueSummary");
res |= ast_manager_unregister("QueueAdd");
res |= ast_manager_unregister("QueueRemove");