From: James Golovich Date: Wed, 3 Mar 2004 08:53:04 +0000 (+0000) Subject: Unregister apps in app_queue.c on unload_module X-Git-Tag: 1.0.0-rc1~1006 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4653b4bb79223455a8b8831726fb0f3fa2b212ca;p=thirdparty%2Fasterisk.git 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 --- 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); }