aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordvossel <dvossel@f38db490-d61c-443f-a65b-d21fe96a405b>2010-01-07 18:58:23 +0000
committerdvossel <dvossel@f38db490-d61c-443f-a65b-d21fe96a405b>2010-01-07 18:58:23 +0000
commita666b47484a7595d2fbd1dce9be13d1eebe2217f (patch)
treea243d5f444656b541f9f1e3dc90cd6d5248c6029
parent5148053833f87d4b8fee99026c51fa8fe1780dc0 (diff)
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/trunk@238361 f38db490-d61c-443f-a65b-d21fe96a405b
-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 c9c2473a2..1b5e7b8a3 100644
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -6590,7 +6590,7 @@ static char *__queues_show(struct mansession *s, int fd, int argc, const char *
}
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