From: Joshua Colp Date: Sat, 17 Feb 2007 16:39:24 +0000 (+0000) Subject: Increase "queue show" buffer size from 80 to 240. This should be more then enough... X-Git-Tag: 1.6.0-beta1~3^2~3180 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d4c75e57c02ad8c1d25b234a99e8bb26a98542dc;p=thirdparty%2Fasterisk.git 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: https://origsvn.digium.com/svn/asterisk/trunk@55197 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/apps/app_queue.c b/apps/app_queue.c index 869dbe5ddf..478df3a936 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);