projects
/
asterisk/asterisk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bdf2a05
)
Correct call parking behavior when there is no courtesytone specified. #6306 (murf)
author
BJ Weschke
<bweschke@btwtech.com>
Wed, 3 May 2006 21:39:24 +0000
(21:39 +0000)
committer
BJ Weschke
<bweschke@btwtech.com>
Wed, 3 May 2006 21:39:24 +0000
(21:39 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@24605
65c4cc65
-6c06-0410-ace0-
fbb531ad65f3
res/res_features.c
patch
|
blob
|
history
diff --git
a/res/res_features.c
b/res/res_features.c
index
273f311
..
b4a284b
100644
(file)
--- a/
res/res_features.c
+++ b/
res/res_features.c
@@
-1662,8
+1662,11
@@
static int park_exec(struct ast_channel *chan, void *data)
ast_hangup(peer);
return -1;
}
+ } else {
+ ast_moh_stop(peer);
+ ast_indicate(peer, AST_CONTROL_UNHOLD);
}
-
+
res = ast_channel_make_compatible(chan, peer);
if (res < 0) {
ast_log(LOG_WARNING, "Could not make channels %s and %s compatible for bridge\n", chan->name, peer->name);