From: Kinsey Moore Date: Thu, 17 Jul 2014 14:27:40 +0000 (+0000) Subject: TEST_FRAMEWORK: Fix threewaytransfer reporting X-Git-Tag: 12.5.0-rc1~50 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bb25de5b0a97f7e489b2bb8ae9a0710780771a54;p=thirdparty%2Fasterisk.git TEST_FRAMEWORK: Fix threewaytransfer reporting Ensure that three-way transfers can be reported even if featuremap is non-NULL. git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/12@418810 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/main/bridge_channel.c b/main/bridge_channel.c index 873369a26e..d24409f2e3 100644 --- a/main/bridge_channel.c +++ b/main/bridge_channel.c @@ -1478,7 +1478,8 @@ static void testsuite_notify_feature_success(struct ast_channel *chan, const cha } else if (!strcmp(dtmf, featuremap->parkcall)) { feature = "parkcall"; } - } else if (xfer) { + } + if (xfer) { if (!strcmp(dtmf, xfer->atxferthreeway)) { feature = "atxferthreeway"; }