[Freeswitch-branches] [commit] r4368 - freeswitch/branches/trixter/src/mod/endpoints/mod_sofia
Freeswitch SVN
trixter at freeswitch.org
Fri Feb 23 12:25:57 EST 2007
Author: trixter
Date: Fri Feb 23 12:25:57 2007
New Revision: 4368
Modified:
freeswitch/branches/trixter/src/mod/endpoints/mod_sofia/mod_sofia.c
Log:
whoops reverse logic in last update
Modified: freeswitch/branches/trixter/src/mod/endpoints/mod_sofia/mod_sofia.c
==============================================================================
--- freeswitch/branches/trixter/src/mod/endpoints/mod_sofia/mod_sofia.c (original)
+++ freeswitch/branches/trixter/src/mod/endpoints/mod_sofia/mod_sofia.c Fri Feb 23 12:25:57 2007
@@ -861,7 +861,7 @@
tech_pvt->flags = profile->flags;
switch_mutex_unlock(tech_pvt->flag_mutex);
tech_pvt->profile = profile;
- if (tech_pvt->bte && !(tech_pvt->profile->pflags & PFLAG_PASS_RFC2833)) {
+ if (tech_pvt->bte && (tech_pvt->profile->pflags & PFLAG_PASS_RFC2833)) {
tech_pvt->te = tech_pvt->bte;
} else {
tech_pvt->te = profile->te;
More information about the Freeswitch-branches
mailing list