[asterisk-commits] pabelanger: branch 10 r331894 - in /branches/10: ./ main/rtp_engine.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Aug 15 10:22:50 CDT 2011
Author: pabelanger
Date: Mon Aug 15 10:22:45 2011
New Revision: 331894
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=331894
Log:
Merged revisions 331886 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.8
........
r331886 | pabelanger | 2011-08-15 11:21:16 -0400 (Mon, 15 Aug 2011) | 5 lines
Fix noisy message when briding channels
(closes issue ASTERISK-18270)
Reported by: Federico Alves
........
Modified:
branches/10/ (props changed)
branches/10/main/rtp_engine.c
Propchange: branches/10/
------------------------------------------------------------------------------
Binary property 'branch-1.8-merged' - no diff available.
Modified: branches/10/main/rtp_engine.c
URL: http://svnview.digium.com/svn/asterisk/branches/10/main/rtp_engine.c?view=diff&rev=331894&r1=331893&r2=331894
==============================================================================
--- branches/10/main/rtp_engine.c (original)
+++ branches/10/main/rtp_engine.c Mon Aug 15 10:22:45 2011
@@ -1386,10 +1386,10 @@
/* Depending on the end result for bridging either do a local bridge or remote bridge */
if (audio_glue0_res == AST_RTP_GLUE_RESULT_LOCAL || audio_glue1_res == AST_RTP_GLUE_RESULT_LOCAL) {
- ast_verbose(VERBOSE_PREFIX_3 "Locally bridging %s and %s\n", c0->name, c1->name);
+ ast_verb(3, "Locally bridging %s and %s\n", c0->name, c1->name);
res = local_bridge_loop(c0, c1, instance0, instance1, timeoutms, flags, fo, rc, c0->tech_pvt, c1->tech_pvt);
} else {
- ast_verbose(VERBOSE_PREFIX_3 "Remotely bridging %s and %s\n", c0->name, c1->name);
+ ast_verb(3, "Remotely bridging %s and %s\n", c0->name, c1->name);
res = remote_bridge_loop(c0, c1, instance0, instance1, vinstance0, vinstance1,
tinstance0, tinstance1, glue0, glue1, cap0, cap1, timeoutms, flags,
fo, rc, c0->tech_pvt, c1->tech_pvt);
More information about the asterisk-commits
mailing list