]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Merged revisions 331886 via svnmerge from
authorPaul Belanger <paul.belanger@polybeacon.com>
Mon, 15 Aug 2011 15:22:45 +0000 (15:22 +0000)
committerPaul Belanger <paul.belanger@polybeacon.com>
Mon, 15 Aug 2011 15:22:45 +0000 (15:22 +0000)
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
........

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/10@331894 65c4cc65-6c06-0410-ace0-fbb531ad65f3

main/rtp_engine.c

index c7d77f809d19b38812a5c02913e423c73c2f0141..9605d62775a68f38ea9fdcec85c9c8b2b85a9e15 100644 (file)
@@ -1386,10 +1386,10 @@ enum ast_bridge_result ast_rtp_instance_bridge(struct ast_channel *c0, struct as
 
        /* 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);