aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authordvossel <dvossel@f38db490-d61c-443f-a65b-d21fe96a405b>2010-01-07 18:59:03 +0000
committerdvossel <dvossel@f38db490-d61c-443f-a65b-d21fe96a405b>2010-01-07 18:59:03 +0000
commit3f231f642d38df9bfb9532bc3303b2a1d8ca90d8 (patch)
tree62f4a762102bcba6c3b4cef04253b43455747e73 /apps
parent94ec994c8bcc62508418cf7947bde61a0b1ec895 (diff)
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 ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.2@238362 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps')
-rw-r--r--apps/app_queue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/app_queue.c b/apps/app_queue.c
index e16993ffd..e1d7e0fda 100644
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -6134,7 +6134,7 @@ static char *__queues_show(struct mansession *s, int fd, int argc, char **argv)
}
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