summaryrefslogtreecommitdiff
path: root/res/res_features.c
diff options
context:
space:
mode:
authorJoshua Colp <jcolp@digium.com>2007-08-31 14:40:21 +0000
committerJoshua Colp <jcolp@digium.com>2007-08-31 14:40:21 +0000
commit4ddc0e91bf21542b9d43c052bb1209551e5db402 (patch)
tree0912ef3f82e6750d14f79271fac6eda30355d407 /res/res_features.c
parent83ea59acd9b21c5e4f08f00044c6e7de578713bd (diff)
Merged revisions 81403 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r81403 | file | 2007-08-31 11:38:59 -0300 (Fri, 31 Aug 2007) | 4 lines (closes issue #10618) Reported by: dimas Don't pass through the stopped sounds frame.... just drop it. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@81404 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'res/res_features.c')
-rw-r--r--res/res_features.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/res/res_features.c b/res/res_features.c
index d34fc7c3d..3ecfd30c3 100644
--- a/res/res_features.c
+++ b/res/res_features.c
@@ -1625,14 +1625,7 @@ 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 {
+ } else if (f->subclass != -1) {
ast_log(LOG_NOTICE, "Don't know what to do about control frame: %d\n", f->subclass);
}
/* else who cares */