mirror of
https://github.com/tmate-io/tmate.git
synced 2026-07-22 10:37:25 +00:00
Default to 500 messages (we care about them)
This commit is contained in:
parent
66e4f554c3
commit
d5bd2e40f0
2 changed files with 5 additions and 1 deletions
|
|
@ -102,7 +102,11 @@ const struct options_table_entry options_table[] = {
|
|||
.scope = OPTIONS_TABLE_SERVER,
|
||||
.minimum = 0,
|
||||
.maximum = INT_MAX,
|
||||
#ifdef TMATE
|
||||
.default_num = 500
|
||||
#else
|
||||
.default_num = 100
|
||||
#endif
|
||||
},
|
||||
|
||||
{ .name = "quiet",
|
||||
|
|
|
|||
|
|
@ -66,7 +66,7 @@ void __tmate_status_message(const char *fmt, va_list ap)
|
|||
free(message);
|
||||
}
|
||||
|
||||
void printflike(1, 2) tmate_status_message(const char *fmt, ...)
|
||||
void tmate_status_message(const char *fmt, ...)
|
||||
{
|
||||
va_list ap;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue