diff --git a/res/res_features.c b/res/res_features.c index 7f2bdac2fceef3504e8771e9eb4f808fd7bb567e..0787ec8625f5fc0deeea771dc5e85358f99d7ac5 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;