[asterisk-commits] dvossel: branch 1.6.1 r238363 - in /branches/1.6.1: ./ apps/app_queue.c
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Thu Jan 7 13:00:20 CST 2010
Author: dvossel
Date: Thu Jan 7 13:00:16 2010
New Revision: 238363
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=238363
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.1/ (props changed)
branches/1.6.1/apps/app_queue.c
Propchange: branches/1.6.1/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.
Modified: branches/1.6.1/apps/app_queue.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.1/apps/app_queue.c?view=diff&rev=238363&r1=238362&r2=238363
==============================================================================
--- branches/1.6.1/apps/app_queue.c (original)
+++ branches/1.6.1/apps/app_queue.c Thu Jan 7 13:00:16 2010
@@ -5849,7 +5849,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