[svn-commits] file: branch 1.6.1 r192432 - in /branches/1.6.1: ./ apps/app_followme.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Tue May 5 12:50:27 CDT 2009
Author: file
Date: Tue May 5 12:50:23 2009
New Revision: 192432
URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=192432
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.1/ (props changed)
branches/1.6.1/apps/app_followme.c
Propchange: branches/1.6.1/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.1/apps/app_followme.c
URL: http://svn.asterisk.org/svn-view/asterisk/branches/1.6.1/apps/app_followme.c?view=diff&rev=192432&r1=192431&r2=192432
==============================================================================
--- branches/1.6.1/apps/app_followme.c (original)
+++ branches/1.6.1/apps/app_followme.c Tue May 5 12:50:23 2009
@@ -848,7 +848,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 svn-commits
mailing list