From 48a1169f4e16ac90a28cafeca15c3237fe9591b1 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Sat, 9 Apr 2011 20:00:29 +0000 Subject: [PATCH] Since buffers are now global, bump the default buffer-limit a bit higher to 20 rather than 9. --- options-table.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/options-table.c b/options-table.c index f8f99314..e91222d3 100644 --- a/options-table.c +++ b/options-table.c @@ -55,7 +55,7 @@ const struct options_table_entry server_options_table[] = { .type = OPTIONS_TABLE_NUMBER, .minimum = 1, .maximum = INT_MAX, - .default_num = 9 + .default_num = 20 }, { .name = "escape-time",