[asterisk-commits] dvossel: branch 1.6.2 r238362 - in /branches/1.6.2: ./ apps/app_queue.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Thu Jan 7 12:59:07 CST 2010


Author: dvossel
Date: Thu Jan  7 12:59:03 2010
New Revision: 238362

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=238362
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.2/   (props changed)
    branches/1.6.2/apps/app_queue.c

Propchange: branches/1.6.2/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.2/apps/app_queue.c
URL: http://svnview.digium.com/svn/asterisk/branches/1.6.2/apps/app_queue.c?view=diff&rev=238362&r1=238361&r2=238362
==============================================================================
--- branches/1.6.2/apps/app_queue.c (original)
+++ branches/1.6.2/apps/app_queue.c Thu Jan  7 12:59:03 2010
@@ -6134,7 +6134,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