From 51880b7ddcb9928b949f2a3c38402e71f9274d5e Mon Sep 17 00:00:00 2001 From: Mark Spencer Date: Thu, 6 Jan 2005 17:19:54 +0000 Subject: [PATCH] Fix typo for blind transfer (bug #3259) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4696 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- apps/app_dial.c | 2 +- res/res_features.c | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/app_dial.c b/apps/app_dial.c index f8f2346d3b..05f2dcfee6 100755 --- a/apps/app_dial.c +++ b/apps/app_dial.c @@ -787,7 +787,7 @@ static int dial_exec(struct ast_channel *chan, void *data) memset(tmp, 0, sizeof(struct localuser)); if (transfer) { ast_set2_flag(tmp, strchr(transfer, 't'), DIAL_ALLOWREDIRECT_IN); - ast_set2_flag(tmp, strchr(transfer, 't'), DIAL_ALLOWREDIRECT_OUT); + ast_set2_flag(tmp, strchr(transfer, 'T'), DIAL_ALLOWREDIRECT_OUT); ast_set2_flag(tmp, strchr(transfer, 'r'), DIAL_RINGBACKONLY); ast_set2_flag(tmp, strchr(transfer, 'm'), DIAL_MUSICONHOLD); ast_set2_flag(tmp, strchr(transfer, 'H'), DIAL_ALLOWDISCONNECT_OUT); diff --git a/res/res_features.c b/res/res_features.c index 04147cd20b..8b2ad415b8 100755 --- a/res/res_features.c +++ b/res/res_features.c @@ -418,7 +418,6 @@ static int builtin_blindtransfer(struct ast_channel *chan, struct ast_channel *p int res; int len; - ast_log(LOG_NOTICE, "XXX Blind Transfer %s, %s (sense=%d) XXX\n", chan->name, peer->name, sense); if (sense == FEATURE_SENSE_PEER) { transferer = peer; transferee = chan;