mirror of
https://github.com/tmate-io/tmate.git
synced 2024-11-23 00:23:08 +01:00
Default to 500 messages (we care about them)
This commit is contained in:
parent
66e4f554c3
commit
d5bd2e40f0
@ -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…
Reference in New Issue
Block a user