aboutsummaryrefslogtreecommitdiffstats
path: root/main/features.c
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-03-12 22:53:24 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2008-03-12 22:53:24 +0000
commitf761c728282ab6bd939be211f654c9b984e9be82 (patch)
tree4817a4b3bb98b9c4421ce7b1c5766a2d7e8f0143 /main/features.c
parente9949822979f0b1c92d16c9af2e1ba683a5dc467 (diff)
Merged revisions 107465 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ........ r107465 | file | 2008-03-11 10:05:17 -0500 (Tue, 11 Mar 2008) | 4 lines Clarify comment about masquerading and playback of the parking slot. (closes issue #12180) Reported by: davidw ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.0@108355 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/features.c')
-rw-r--r--main/features.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/features.c b/main/features.c
index 89b412704..ff3ef50e7 100644
--- a/main/features.c
+++ b/main/features.c
@@ -495,7 +495,7 @@ static int park_call_full(struct ast_channel *chan, struct ast_channel *peer, in
ast_log(LOG_ERROR, "Parking context '%s' does not exist and unable to create\n", parking_con);
/* Tell the peer channel the number of the parking space */
if (peer && ((pu->parkingnum != -1 && ast_strlen_zero(orig_chan_name)) || !strcasecmp(peer->name, orig_chan_name))) { /* Only say number if it's a number and the channel hasn't been masqueraded away */
- /* Make sure we don't start saying digits to the channel being parked */
+ /* If a channel is masqueraded into peer while playing back the parking slot number do not continue playing it back. This is the case if an attended transfer occurs. */
ast_set_flag(peer, AST_FLAG_MASQ_NOSTREAM);
ast_say_digits(peer, pu->parkingnum, "", peer->language);
ast_clear_flag(peer, AST_FLAG_MASQ_NOSTREAM);