dect
/
asterisk
Archived
13
0
Fork 0

Merged revisions 281568 via svnmerge from

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

................
  r281568 | russell | 2010-08-10 12:48:42 -0500 (Tue, 10 Aug 2010) | 22 lines
  
  Merged revisions 281567 via svnmerge from 
  https://origsvn.digium.com/svn/asterisk/branches/1.6.2
  
  ................
    r281567 | russell | 2010-08-10 12:47:13 -0500 (Tue, 10 Aug 2010) | 15 lines
    
    Merged revisions 281566 via svnmerge from 
    https://origsvn.digium.com/svn/asterisk/branches/1.4
    
    ........
      r281566 | russell | 2010-08-10 12:45:45 -0500 (Tue, 10 Aug 2010) | 8 lines
      
      Reset visible indication after answer.
      
      (closes issue #17641)
      Reported by: klaus3000
      Patches:
            ast1.6.2.9-app_dial-visible_indication.patch.txt uploaded by klaus3000 (license 65)
      Tested by: schmidts
    ........
  ................
................


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@281570 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
russell 2010-08-10 17:49:36 +00:00
parent 6195c26384
commit d8b60640f1
1 changed files with 2 additions and 1 deletions

View File

@ -2611,8 +2611,9 @@ static int dial_exec_full(struct ast_channel *chan, const char *data, struct ast
sentringing = 0;
ast_indicate(chan, -1);
}
/* Be sure no generators are left on it */
/* Be sure no generators are left on it and reset the visible indication */
ast_deactivate_generator(chan);
chan->visible_indication = 0;
/* Make sure channels are compatible */
res = ast_channel_make_compatible(chan, peer);
if (res < 0) {