]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Change the warning message if we can't do native bridge because of diffrent codecs
authorMartin Pycko <martinp@digium.com>
Tue, 25 Nov 2003 21:15:28 +0000 (21:15 +0000)
committerMartin Pycko <martinp@digium.com>
Tue, 25 Nov 2003 21:15:28 +0000 (21:15 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1794 65c4cc65-6c06-0410-ace0-fbb531ad65f3

rtp.c

diff --git a/rtp.c b/rtp.c
index 92fddcafe1d168589ecf3b27d2a1a9978e96229a..023353e19ac21a3fa3d3161f04a2d3560b20db2a 100755 (executable)
--- a/rtp.c
+++ b/rtp.c
@@ -1201,7 +1201,7 @@ int ast_rtp_bridge(struct ast_channel *c0, struct ast_channel *c1, int flags, st
                codec1 = pr1->get_codec(c1);
                /* Hey, we can't do reinvite if both parties speak diffrent codecs */
                if (codec0 != codec1) {
-                       ast_log(LOG_WARNING, "codec0 = %d is not codec1 = %d, can't do reinvite\n",codec0,codec1);
+                       ast_log(LOG_WARNING, "codec0 = %d is not codec1 = %d, cannot native bridge.\n",codec0,codec1);
                        ast_mutex_unlock(&c0->lock);
                        ast_mutex_unlock(&c1->lock);
                        return -2;