aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-02-17 16:39:24 +0000
committerfile <file@f38db490-d61c-443f-a65b-d21fe96a405b>2007-02-17 16:39:24 +0000
commit9aa0c24a295f611f9cda9fa044097bf17ad09d75 (patch)
tree5516ad350512850ea1ba6ce4442ec52c9d8afe0b /apps
parent2cf6dc123086a7b5f757f4d1a8f8c5c904e11831 (diff)
Increase "queue show" buffer size from 80 to 240. This should be more then enough for most cases. (issue #9089 reported by mvanbaak)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@55197 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 869dbe5dd..478df3a93 100644
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -4063,7 +4063,7 @@ static void do_print(struct mansession *s, int fd, const char *str)
static int __queues_show(struct mansession *s, int fd, int argc, char **argv)
{
struct call_queue *q;
- struct ast_str *out = ast_str_alloca(80);
+ struct ast_str *out = ast_str_alloca(240);
int found = 0;
time_t now = time(NULL);