[asterisk-commits] mmichelson: trunk r120286 - in /trunk: ./ apps/app_queue.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Jun 4 09:12:45 CDT 2008
Author: mmichelson
Date: Wed Jun 4 09:12:45 2008
New Revision: 120286
URL: http://svn.digium.com/view/asterisk?view=rev&rev=120286
Log:
Merged revisions 120285 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4
........
r120285 | mmichelson | 2008-06-04 09:11:12 -0500 (Wed, 04 Jun 2008) | 7 lines
Tab completion when removing a member should give the member's interface,
not the name, since the interface is what is expected for the command.
(closes issue #12783)
Reported by: davevg
........
Modified:
trunk/ (props changed)
trunk/apps/app_queue.c
Propchange: trunk/
------------------------------------------------------------------------------
Binary property 'branch-1.4-merged' - no diff available.
Modified: trunk/apps/app_queue.c
URL: http://svn.digium.com/view/asterisk/trunk/apps/app_queue.c?view=diff&rev=120286&r1=120285&r2=120286
==============================================================================
--- trunk/apps/app_queue.c (original)
+++ trunk/apps/app_queue.c Wed Jun 4 09:12:45 2008
@@ -5957,7 +5957,7 @@
if (!strncasecmp(word, m->membername, wordlen) && ++which > state) {
char *tmp;
ao2_unlock(q);
- tmp = m->membername;
+ tmp = m->interface;
ao2_ref(m, -1);
queue_unref(q);
return ast_strdup(tmp);
More information about the asterisk-commits
mailing list