summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Jordan <mjordan@digium.com>2013-08-03 03:53:46 +0000
committerMatthew Jordan <mjordan@digium.com>2013-08-03 03:53:46 +0000
commit2977846f0ab80df788e8d4729d96e560368faaa2 (patch)
treee6c458c8f1b55c469f72ac5234bc3862502919db
parentab6fc47d9526729eb576e942e0a6eedf5686cc4b (diff)
Don't unsubscribe from the AMI message router from manager_bridges
The AMI message router is owned wholly by manager.c. Previously, each of the manager_{item} source files had their own message router and they unsubscribed from each; once they moved over to using a single message router only a single unsubscribe became necessary. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@396158 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--main/manager_bridges.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/main/manager_bridges.c b/main/manager_bridges.c
index 77533c600..d563c2bc8 100644
--- a/main/manager_bridges.c
+++ b/main/manager_bridges.c
@@ -449,8 +449,6 @@ static int manager_bridge_info(struct mansession *s, const struct message *m)
static void manager_bridging_cleanup(void)
{
- stasis_message_router_unsubscribe(bridge_state_router);
- bridge_state_router = NULL;
stasis_unsubscribe(topic_forwarder);
topic_forwarder = NULL;
}