[asterisk-commits] file: branch 1.6.2 r192433 - in /branches/1.6.2:	./ apps/app_followme.c
    SVN commits to the Asterisk project 
    asterisk-commits at lists.digium.com
       
    Tue May  5 12:52:17 CDT 2009
    
    
  
Author: file
Date: Tue May  5 12:52:12 2009
New Revision: 192433
URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=192433
Log:
Merged revisions 192430 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk
................
  r192430 | file | 2009-05-05 14:46:51 -0300 (Tue, 05 May 2009) | 12 lines
  
  Merged revisions 192429 via svnmerge from 
  https://origsvn.digium.com/svn/asterisk/branches/1.4
  
  ........
    r192429 | file | 2009-05-05 14:43:30 -0300 (Tue, 05 May 2009) | 5 lines
    
    Fix a bug where the followme application would continue trying numbers after the caller hung up.
    
    (closes issue #13624)
    Reported by: sgenyuk
  ........
................
Modified:
    branches/1.6.2/   (props changed)
    branches/1.6.2/apps/app_followme.c
Propchange: branches/1.6.2/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.2/apps/app_followme.c
URL: http://svn.asterisk.org/svn-view/asterisk/branches/1.6.2/apps/app_followme.c?view=diff&rev=192433&r1=192432&r2=192433
==============================================================================
--- branches/1.6.2/apps/app_followme.c (original)
+++ branches/1.6.2/apps/app_followme.c Tue May  5 12:52:12 2009
@@ -887,7 +887,7 @@
 		if (winner)
 			break;
 
-		if (!caller) {
+		if (!caller || ast_check_hangup(caller)) {
 			tpargs->status = 1;
 			ast_free(findme_user_list);
 			return;
    
    
More information about the asterisk-commits
mailing list