[asterisk-commits] file: trunk r51559 - in /trunk: ./
	channels/chan_sip.c
    asterisk-commits at lists.digium.com 
    asterisk-commits at lists.digium.com
       
    Mon Jan 22 20:02:09 MST 2007
    
    
  
Author: file
Date: Mon Jan 22 21:02:09 2007
New Revision: 51559
URL: http://svn.digium.com/view/asterisk?view=rev&rev=51559
Log:
Merged revisions 51558 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r51558 | file | 2007-01-22 22:00:12 -0500 (Mon, 22 Jan 2007) | 2 lines
Only change audio formats on the channel if we have an audio format to change to. (issue #8535 reported by ivoc)
........
Modified:
    trunk/   (props changed)
    trunk/channels/chan_sip.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.
Modified: trunk/channels/chan_sip.c
URL: http://svn.digium.com/view/asterisk/trunk/channels/chan_sip.c?view=diff&rev=51559&r1=51558&r2=51559
==============================================================================
--- trunk/channels/chan_sip.c (original)
+++ trunk/channels/chan_sip.c Mon Jan 22 21:02:09 2007
@@ -5278,7 +5278,7 @@
 	if (option_debug > 3)
 		ast_log(LOG_DEBUG, "We have an owner, now see if we need to change this call\n");
 
-	if (!(p->owner->nativeformats & p->jointcapability & AST_FORMAT_AUDIO_MASK)) {
+	if (!(p->owner->nativeformats & p->jointcapability & AST_FORMAT_AUDIO_MASK) && (p->jointcapability & AST_FORMAT_AUDIO_MASK)) {
 		if (debug) {
 			char s1[BUFSIZ], s2[BUFSIZ];
 			ast_log(LOG_DEBUG, "Oooh, we need to change our audio formats since our peer supports only %s and not %s\n", 
    
    
More information about the asterisk-commits
mailing list