From 9ad9e8c5dded2e9134a8386bacd1ddd6625e07d1 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Thu, 13 Jan 2011 13:38:57 +0000 Subject: [PATCH] The maximum history-limit was accidentally reduced, fix it back to INT_MAX. --- options-table.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/options-table.c b/options-table.c index 4e2b8f61..f8f99314 100644 --- a/options-table.c +++ b/options-table.c @@ -150,7 +150,7 @@ const struct options_table_entry session_options_table[] = { { .name = "history-limit", .type = OPTIONS_TABLE_NUMBER, .minimum = 0, - .maximum = SHRT_MAX, + .maximum = INT_MAX, .default_num = 2000 },