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
changes/61/61/1
Jonathan Rose 11 years ago
parent 96492b9616
commit cf8998cca7

@ -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 */

Loading…
Cancel
Save