aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authordvossel <dvossel@f38db490-d61c-443f-a65b-d21fe96a405b>2010-01-07 19:00:44 +0000
committerdvossel <dvossel@f38db490-d61c-443f-a65b-d21fe96a405b>2010-01-07 19:00:44 +0000
commitd1918f42d59d617ccb0a0b98de7a5aed23db7344 (patch)
tree4703518cb1b7f6b863d8cfb4d9e8b80456008038 /apps
parenteb5521780919608461cb6442eae2c87f931918dc (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.0@238364 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 74eb7ad17..a30e6a066 100644
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -5758,7 +5758,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