dect
/
asterisk
Archived
13
0
Fork 0

Merged revisions 170568 via svnmerge from

https://origsvn.digium.com/svn/asterisk/branches/1.4

........
  r170568 | file | 2009-01-23 15:06:54 -0400 (Fri, 23 Jan 2009) | 4 lines
  
  When a call is forwarded stop any active indications. The new channel will provide an indication, if need be, itself.
  (closes issue #14310)
  Reported by: RadicAlish
........


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@170569 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
file 2009-01-23 19:09:18 +00:00
parent 3c1dec78d3
commit 0711778aab
1 changed files with 3 additions and 0 deletions

View File

@ -776,6 +776,9 @@ static void do_forward(struct chanlist *o,
/* Hangup the original channel now, in case we needed it */
ast_hangup(original);
}
if (single) {
ast_indicate(in, -1);
}
}
}