diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2011-04-09 20:00:29 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2011-04-09 20:00:29 +0000 |
commit | 48a1169f4e16ac90a28cafeca15c3237fe9591b1 (patch) | |
tree | 41b626af26c10869f23d0480e2d21c467b9702cc | |
parent | 0a09d04e1b63f816fb2bf16570ef63418349a4bf (diff) | |
download | rtmux-48a1169f4e16ac90a28cafeca15c3237fe9591b1.tar.gz rtmux-48a1169f4e16ac90a28cafeca15c3237fe9591b1.tar.bz2 rtmux-48a1169f4e16ac90a28cafeca15c3237fe9591b1.zip |
Since buffers are now global, bump the default buffer-limit a bit higher
to 20 rather than 9.
-rw-r--r-- | options-table.c | 2 |
1 files changed, 1 insertions, 1 deletions
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", |