aboutsummaryrefslogtreecommitdiffstats
path: root/rtp.c
diff options
context:
space:
mode:
authormartinp <martinp@f38db490-d61c-443f-a65b-d21fe96a405b>2003-11-25 21:15:28 +0000
committermartinp <martinp@f38db490-d61c-443f-a65b-d21fe96a405b>2003-11-25 21:15:28 +0000
commit92fe3ebd092da61fa3409ee9f3f21f5b61a978b6 (patch)
tree8e68309666430d67287c2b9d16ced73bb1237d1e /rtp.c
parentfecb6a8517c5840541943b8e6d07d13baee426bd (diff)
Change the warning message if we can't do native bridge because of diffrent codecs
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1794 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'rtp.c')
-rwxr-xr-xrtp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rtp.c b/rtp.c
index 92fddcafe..023353e19 100755
--- 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;