[asterisk-commits] file: trunk r55197 - /trunk/apps/app_queue.c

asterisk-commits at lists.digium.com asterisk-commits at lists.digium.com
Sat Feb 17 09:39:25 MST 2007


Author: file
Date: Sat Feb 17 10:39:24 2007
New Revision: 55197

URL: http://svn.digium.com/view/asterisk?view=rev&rev=55197
Log:
Increase "queue show" buffer size from 80 to 240. This should be more then enough for most cases. (issue #9089 reported by mvanbaak)

Modified:
    trunk/apps/app_queue.c

Modified: trunk/apps/app_queue.c
URL: http://svn.digium.com/view/asterisk/trunk/apps/app_queue.c?view=diff&rev=55197&r1=55196&r2=55197
==============================================================================
--- trunk/apps/app_queue.c (original)
+++ trunk/apps/app_queue.c Sat Feb 17 10:39:24 2007
@@ -4063,7 +4063,7 @@
 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);
 



More information about the asterisk-commits mailing list