[asterisk-commits] mmichelson: branch 1.6.0 r173534 - in /branches/1.6.0: ./ apps/app_queue.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Feb 4 16:23:52 CST 2009
Author: mmichelson
Date: Wed Feb 4 16:23:52 2009
New Revision: 173534
URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=173534
Log:
Merged revisions 173507 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
........
r173507 | mmichelson | 2009-02-04 16:16:19 -0600 (Wed, 04 Feb 2009) | 7 lines
Fix some areas where the incorrect interface was passed to ast_device_state
I swear it feels like I already did this once...
(closes issue #14359)
Reported by: francesco_r
........
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/svn-view/asterisk/branches/1.6.0/apps/app_queue.c?view=diff&rev=173534&r1=173533&r2=173534
==============================================================================
--- branches/1.6.0/apps/app_queue.c (original)
+++ branches/1.6.0/apps/app_queue.c Wed Feb 4 16:23:52 2009
@@ -2245,7 +2245,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));
+ update_status(tmp->member->state_interface, ast_device_state(tmp->member->state_interface));
return 0;
} else if (qe->parent->eventwhencalled) {
char vars[2048];
@@ -2271,7 +2271,7 @@
ast_verb(3, "Called %s\n", tmp->interface);
}
- update_status(tmp->member->interface, ast_device_state(tmp->member->interface));
+ update_status(tmp->member->state_interface, ast_device_state(tmp->member->state_interface));
return 1;
}
@@ -5535,7 +5535,7 @@
while ((cur = ao2_iterator_next(&mem_iter))) {
if (cur->dynamic)
q->membercount++;
- cur->status = ast_device_state(cur->interface);
+ cur->status = ast_device_state(cur->state_interface);
ao2_ref(cur, -1);
}
ao2_unlock(q);
More information about the asterisk-commits
mailing list