aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2008-03-28 00:55:47 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2008-03-28 00:55:47 +0000
commite2c4fa7a439eee941a1d5da128d56ea92b855d32 (patch)
tree3886746fdf3b2acea354c2225bc60ce4766df00d /apps
parentf7907bb9c339f250f0f1f29e5d6cbf14c91b23ff (diff)
Forgetting to unregister a manager action is bad, mmmk?
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@111565 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-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");