aboutsummaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2006-03-23 22:00:11 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2006-03-23 22:00:11 +0000
commit4a9bc54bbefb857e0b6d456974bfceab974c76da (patch)
tree12391d00d657245d9e0faabd6ae94d83451c0102 /res
parent21339b39720707e4e4b90dccdc082ea672d692af (diff)
Merged revisions 14523 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r14523 | file | 2006-03-23 17:51:50 -0400 (Thu, 23 Mar 2006) | 2 lines Issue #6764 - Return BUSY signal when other party is busy at Attended Transfer (Reported by mnachev) ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@14525 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res')
-rw-r--r--res/res_features.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/res/res_features.c b/res/res_features.c
index 7f2bdac2f..0787ec862 100644
--- a/res/res_features.c
+++ b/res/res_features.c
@@ -1123,6 +1123,9 @@ static struct ast_channel *ast_feature_request_and_dial(struct ast_channel *call
ast_indicate(caller, AST_CONTROL_RINGING);
} else if ((f->subclass == AST_CONTROL_BUSY) || (f->subclass == AST_CONTROL_CONGESTION)) {
state = f->subclass;
+ if (option_verbose > 2)
+ ast_verbose( VERBOSE_PREFIX_3 "%s is busy\n", chan->name);
+ ast_indicate(caller, AST_CONTROL_BUSY);
ast_frfree(f);
f = NULL;
break;