[svn-commits] jrose: branch 11 r407457 - /branches/11/channels/chan_local.c

SVN commits to the Digium repositories svn-commits at lists.digium.com
Wed Feb 5 14:37:17 CST 2014


Author: jrose
Date: Wed Feb  5 14:37:14 2014
New Revision: 407457

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=407457
Log:
chan_local: Fix reversed LocalOptimization field in LocalBridge event

(closes issue ASTERISK-23232)
Reported by: Leon Roy

Modified:
    branches/11/channels/chan_local.c

Modified: branches/11/channels/chan_local.c
URL: http://svnview.digium.com/svn/asterisk/branches/11/channels/chan_local.c?view=diff&rev=407457&r1=407456&r2=407457
==============================================================================
--- branches/11/channels/chan_local.c (original)
+++ branches/11/channels/chan_local.c Wed Feb  5 14:37:14 2014
@@ -1006,7 +1006,7 @@
 		      "LocalOptimization: %s\r\n",
 			ast_channel_name(p->owner), ast_channel_name(p->chan), ast_channel_uniqueid(p->owner), ast_channel_uniqueid(p->chan),
 			p->context, p->exten,
-			ast_test_flag(p, LOCAL_NO_OPTIMIZATION) ? "Yes" : "No");
+			ast_test_flag(p, LOCAL_NO_OPTIMIZATION) ? "No" : "Yes");
 
 
 	/* Start switch on sub channel */




More information about the svn-commits mailing list