aboutsummaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-08-31 14:38:59 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-08-31 14:38:59 +0000
commitc03b18cbadd0cb6a8150199c260f761728f9dab2 (patch)
treee24a327d3505b886a2cfe332d8c567c984681ed0 /res
parent9a18283eef03333ee81a7a9ee0b10a58ab669a6a (diff)
(closes issue #10618)
Reported by: dimas Don't pass through the stopped sounds frame.... just drop it. git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@81403 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res')
-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 87e84ed0c..498e52f85 100644
--- a/res/res_features.c
+++ b/res/res_features.c
@@ -1230,14 +1230,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 */