summaryrefslogtreecommitdiffstats
path: root/options-table.c
diff options
context:
space:
mode:
authorNicholas Marriott <nicm@openbsd.org>2011-01-13 13:38:57 +0000
committerNicholas Marriott <nicm@openbsd.org>2011-01-13 13:38:57 +0000
commit9ad9e8c5dded2e9134a8386bacd1ddd6625e07d1 (patch)
tree1a7c0e8c3ec21458f9ca5dd302faa86ae6b51185 /options-table.c
parentfa4a75cdabbac1751df30138a4f62f526225aacc (diff)
The maximum history-limit was accidentally reduced, fix it back to INT_MAX.
Diffstat (limited to 'options-table.c')
-rw-r--r--options-table.c2
1 files changed, 1 insertions, 1 deletions
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
},