From: Mark Michelson Date: Wed, 5 Jun 2013 18:21:19 +0000 (+0000) Subject: Give the AST_BRIDGE_HOOK_REMOVE_ON_PULL a legitimate value. X-Git-Tag: 13.0.0-beta1~1731 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=79022c0f88dcee887b1ff76796393db3b225d126;p=thirdparty%2Fasterisk.git Give the AST_BRIDGE_HOOK_REMOVE_ON_PULL a legitimate value. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@390525 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/include/asterisk/bridging_features.h b/include/asterisk/bridging_features.h index 0292a6b35e..f37a6192af 100644 --- a/include/asterisk/bridging_features.h +++ b/include/asterisk/bridging_features.h @@ -182,7 +182,7 @@ struct ast_bridge_hook_timer { enum ast_bridge_hook_remove_flags { /*! The hook is removed when the channel is pulled from the bridge. */ - AST_BRIDGE_HOOK_REMOVE_ON_PULL, + AST_BRIDGE_HOOK_REMOVE_ON_PULL = (1 << 0), }; /* BUGBUG Need to be able to selectively remove DTMF, hangup, and interval hooks. */