1
0
mirror of https://github.com/tmate-io/tmate-ssh-server.git synced 2020-11-18 19:53:51 -08:00

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