From 4653b4bb79223455a8b8831726fb0f3fa2b212ca Mon Sep 17 00:00:00 2001 From: James Golovich Date: Wed, 3 Mar 2004 08:53:04 +0000 Subject: [PATCH] Unregister apps in app_queue.c on unload_module git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2316 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_queue.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/app_queue.c b/apps/app_queue.c index dd84980207..2f762497d9 100755 --- a/apps/app_queue.c +++ b/apps/app_queue.c @@ -1564,6 +1564,8 @@ int unload_module(void) ast_cli_unregister(&cli_show_queues); ast_manager_unregister( "Queues" ); ast_manager_unregister( "QueueStatus" ); + ast_unregister_application(app_aqm); + ast_unregister_application(app_rqm); return ast_unregister_application(app); }