The maximum history-limit was accidentally reduced, fix it back to INT_MAX.

This commit is contained in:
Nicholas Marriott 2011-01-13 13:38:57 +00:00
parent fa4a75cdab
commit 9ad9e8c5dd

View File

@ -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
},