From cce5ea07b4b41e361302de33e46f9c0aaaa075d3 Mon Sep 17 00:00:00 2001 From: file Date: Thu, 23 Mar 2006 21:51:50 +0000 Subject: 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/branches/1.2@14523 f38db490-d61c-443f-a65b-d21fe96a405b --- res/res_features.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'res/res_features.c') diff --git a/res/res_features.c b/res/res_features.c index bf248b5f4..131d695ee 100644 --- a/res/res_features.c +++ b/res/res_features.c @@ -1144,6 +1144,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; -- cgit v1.2.3