summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2009-05-14 21:24:17 +0000
committerRussell Bryant <russell@russellbryant.com>2009-05-14 21:24:17 +0000
commit23f54f4c760427b601088fc8e5d2883319b43bf9 (patch)
treea94f3ae56f6d4c44a44e73493a0b1fed47e1b019
parent5ff58c1ff9bee83c2891272ebef39ef148e3cb82 (diff)
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
-rw-r--r--main/features.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/features.c b/main/features.c
index cef604ced..1b430af4b 100644
--- a/main/features.c
+++ b/main/features.c
@@ -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;