summaryrefslogtreecommitdiff
path: root/channel.c
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2005-11-02 17:20:35 +0000
committerKevin P. Fleming <kpfleming@digium.com>2005-11-02 17:20:35 +0000
commit5f50e4cb93a1393a53e1d18b6d413de28138aa91 (patch)
tree7392f8bac32a63a6efcfcea082b0deb8698a1e11 /channel.c
parent9693d058827cda41a7f0b270710137061697831e (diff)
native bridging changes
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6944 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channel.c')
-rwxr-xr-xchannel.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/channel.c b/channel.c
index e2448436a..91c9fa355 100755
--- a/channel.c
+++ b/channel.c
@@ -3460,14 +3460,10 @@ enum ast_bridge_result ast_channel_bridge(struct ast_channel *c0, struct ast_cha
} else {
ast_clear_flag(c0, AST_FLAG_NBRIDGE);
ast_clear_flag(c1, AST_FLAG_NBRIDGE);
- ast_verbose(VERBOSE_PREFIX_3 "Native bridge of %s and %s was unsuccessful\n", c0->name, c1->name);
}
- if (res == AST_BRIDGE_RETRY)
- continue;
switch (res) {
case AST_BRIDGE_RETRY:
-/* continue; */
- break;
+ continue;
default:
ast_log(LOG_WARNING, "Private bridge between %s and %s failed\n", c0->name, c1->name);
/* fallthrough */