Fix a typo where an equality check should be an assignment.

(closes issue #15103)
Reported by: lmsteffan
Patches:
      transfer_crash.patch uploaded by lmsteffan (license 779)


git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@194477 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Russell Bryant 2009-05-14 21:24:17 +00:00
parent 5ff58c1ff9
commit 23f54f4c76
1 changed files with 1 additions and 1 deletions

View File

@ -2892,7 +2892,7 @@ int ast_bridge_call(struct ast_channel *chan,struct ast_channel *peer,struct ast
if (strcasecmp(orig_channame, chan->name) != 0) {
/* old channel */
if ((chan_ptr == ast_channel_get_by_name(orig_channame))) {
if ((chan_ptr = ast_channel_get_by_name(orig_channame))) {
ast_channel_lock(chan_ptr);
if (!ast_bridged_channel(chan_ptr)) {
struct ast_cdr *cur;