[svn-commits] mmichelson: branch 1.6.0 r125592 - in /branches/1.6.0: ./ apps/app_queue.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Thu Jun 26 18:06:48 CDT 2008
Author: mmichelson
Date: Thu Jun 26 18:06:47 2008
New Revision: 125592
URL: http://svn.digium.com/view/asterisk?view=rev&rev=125592
Log:
Merged revisions 125591 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
........
r125591 | mmichelson | 2008-06-26 18:06:18 -0500 (Thu, 26 Jun 2008) | 3 lines
Fix a really stupid mistake
........
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=125592&r1=125591&r2=125592
==============================================================================
--- branches/1.6.0/apps/app_queue.c (original)
+++ branches/1.6.0/apps/app_queue.c Thu Jun 26 18:06:47 2008
@@ -5410,7 +5410,7 @@
while ((mem = ao2_iterator_next(&mem_iter))) {
ast_str_set(&out, 0, " %s", mem->membername);
if (strcasecmp(mem->membername, mem->interface)) {
- ast_build_string(&max, &max_left, " (%s)", mem->interface);
+ ast_str_append(&out, 0, " (%s)", mem->interface);
}
if (mem->penalty)
ast_str_append(&out, 0, " with penalty %d", mem->penalty);
More information about the svn-commits
mailing list