mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-16 14:58:25 +00:00
chan_local: Fix reversed LocalOptimization field in LocalBridge event
(closes issue ASTERISK-23232) Reported by: Leon Roy git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/11@407457 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1006,7 +1006,7 @@ static int local_call(struct ast_channel *ast, const char *dest, int timeout)
|
||||
"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 */
|
||||
|
||||
Reference in New Issue
Block a user