[asterisk-commits] dvossel: branch 1.6.0 r238364 - in /branches/1.6.0: ./ apps/app_queue.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Jan 7 13:00:49 CST 2010
Author: dvossel
Date: Thu Jan 7 13:00:44 2010
New Revision: 238364
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=238364
Log:
Merged revisions 238361 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk
........
r238361 | dvossel | 2010-01-07 12:58:23 -0600 (Thu, 07 Jan 2010) | 8 lines
cli 'queue show' formatting fix. queue name was truncated over 12 characters
(closes issue #16078)
Reported by: RoadKill
Patches:
quequename_limit.patch uploaded by ppyy (license 906)
Tested by: dvossel
........
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://svnview.digium.com/svn/asterisk/branches/1.6.0/apps/app_queue.c?view=diff&rev=238364&r1=238363&r2=238364
==============================================================================
--- branches/1.6.0/apps/app_queue.c (original)
+++ branches/1.6.0/apps/app_queue.c Thu Jan 7 13:00:44 2010
@@ -5758,7 +5758,7 @@
}
found = 1;
- ast_str_set(&out, 0, "%-12.12s has %d calls (max ", q->name, q->count);
+ ast_str_set(&out, 0, "%s has %d calls (max ", q->name, q->count);
if (q->maxlen)
ast_str_append(&out, 0, "%d", q->maxlen);
else
More information about the asterisk-commits
mailing list