diff options
author | Tiago Cunha <tcunha@gmx.com> | 2011-01-21 23:54:19 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2011-01-21 23:54:19 +0000 |
commit | 6d9fe6c3aa237c818367d90b48b461326dc54da6 (patch) | |
tree | 5b00afb08ba51f2652f67038fe49cf029f3aa92b | |
parent | c2ed0186dedf8f178a3bd7305e8d877d5a867e46 (diff) | |
download | rtmux-6d9fe6c3aa237c818367d90b48b461326dc54da6.tar.gz rtmux-6d9fe6c3aa237c818367d90b48b461326dc54da6.tar.bz2 rtmux-6d9fe6c3aa237c818367d90b48b461326dc54da6.zip |
Sync OpenBSD patchset 843:
The maximum history-limit was accidentally reduced, fix it back to INT_MAX.
-rw-r--r-- | options-table.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/options-table.c b/options-table.c index e769db7a..323e81d4 100644 --- a/options-table.c +++ b/options-table.c @@ -1,4 +1,4 @@ -/* $Id: options-table.c,v 1.3 2011-01-07 14:34:45 tcunha Exp $ */ +/* $Id: options-table.c,v 1.4 2011-01-21 23:54:19 tcunha Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott <nicm@users.sourceforge.net> @@ -149,7 +149,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 }, |