dect
/
asterisk
Archived
13
0
Fork 0

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
This commit is contained in:
file 2007-02-17 16:39:24 +00:00
parent 2cf6dc1230
commit 9aa0c24a29
1 changed files with 1 additions and 1 deletions

View File

@ -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);