summaryrefslogtreecommitdiff
path: root/res/res_features.c
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2007-08-30 14:26:05 +0000
committerJoshua Colp <jcolp@digium.com>2007-08-30 14:26:05 +0000
commit3b354716917d8a30ea542438d223342c2915d1d0 (patch)
tree9c9f1f8b921d8b5b6fa4dc86e46f9af9109112fb /res/res_features.c
parent16696af3dfe5b413cf0e94ace565da2cb70a1d57 (diff)
Merged revisions 81369 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r81369 | file | 2007-08-30 11:23:40 -0300 (Thu, 30 Aug 2007) | 4 lines (issue #10599) Reported by: dimas Handle the -1 control subclass during feature dialing (it indicates to stop sounds). ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@81370 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res/res_features.c')
-rw-r--r--res/res_features.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/res/res_features.c b/res/res_features.c
index 88958807a..3f74296e5 100644
--- a/res/res_features.c
+++ b/res/res_features.c
@@ -1625,6 +1625,13 @@ static struct ast_channel *ast_feature_request_and_dial(struct ast_channel *call
f = NULL;
ready=1;
break;
+ } else if (f->subclass == -1) {
+ if (option_verbose > 2)
+ ast_verbose( VERBOSE_PREFIX_3 "%s stopped sounds\n", chan->name);
+ ast_indicate(caller, -1);
+ ast_frfree(f);
+ f = NULL;
+ break;
} else {
ast_log(LOG_NOTICE, "Don't know what to do about control frame: %d\n", f->subclass);
}