[svn-commits] tilghman: branch 1.6.0 r136490 - in /branches/1.6.0: ./ apps/app_queue.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Thu Aug 7 11:57:53 CDT 2008
Author: tilghman
Date: Thu Aug 7 11:57:53 2008
New Revision: 136490
URL: http://svn.digium.com/view/asterisk?view=rev&rev=136490
Log:
Merged revisions 136489 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
................
r136489 | tilghman | 2008-08-07 11:55:57 -0500 (Thu, 07 Aug 2008) | 15 lines
Merged revisions 136488 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r136488 | tilghman | 2008-08-07 11:50:47 -0500 (Thu, 07 Aug 2008) | 7 lines
Update persistent state on all exit conditions.
(closes issue #12916)
Reported by: sgenyuk
Patches:
app_queue.patch.txt uploaded by neutrino88 (license 297)
Tested by: sgenyuk, aragon
........
................
Modified:
branches/1.6.0/ (props changed)
branches/1.6.0/apps/app_queue.c
Propchange: branches/1.6.0/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.0/apps/app_queue.c
URL: http://svn.digium.com/view/asterisk/branches/1.6.0/apps/app_queue.c?view=diff&rev=136490&r1=136489&r2=136490
==============================================================================
--- branches/1.6.0/apps/app_queue.c (original)
+++ branches/1.6.0/apps/app_queue.c Thu Aug 7 11:57:53 2008
@@ -2208,6 +2208,7 @@
ast_verb(3, "Couldn't call %s\n", tmp->interface);
do_hang(tmp);
(*busies)++;
+ update_status(tmp->member->interface, ast_device_state(tmp->member->interface));
return 0;
} else if (qe->parent->eventwhencalled) {
char vars[2048];
@@ -2233,6 +2234,7 @@
ast_verb(3, "Called %s\n", tmp->interface);
}
+ update_status(tmp->member->interface, ast_device_state(tmp->member->interface));
return 1;
}
More information about the svn-commits
mailing list