diff options
author | nicm <nicm> | 2015-11-12 08:19:18 +0000 |
---|---|---|
committer | nicm <nicm> | 2015-11-12 08:19:18 +0000 |
commit | 7062b0e65dcbb94bb190f6c50f4089b2ea6278bb (patch) | |
tree | 3396b7442cf2b3fdc6e894e311081f9dd7217077 | |
parent | 00c34df1868ffde8ece952729ddf2e4df09667be (diff) | |
download | rtmux-7062b0e65dcbb94bb190f6c50f4089b2ea6278bb.tar.gz rtmux-7062b0e65dcbb94bb190f6c50f4089b2ea6278bb.tar.bz2 rtmux-7062b0e65dcbb94bb190f6c50f4089b2ea6278bb.zip |
Default history-file should be "" not NULL, from Greg Onufe.
-rw-r--r-- | options-table.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/options-table.c b/options-table.c index 4e9a0a81..d216b6d8 100644 --- a/options-table.c +++ b/options-table.c @@ -85,7 +85,7 @@ const struct options_table_entry server_options_table[] = { { .name = "history-file", .type = OPTIONS_TABLE_STRING, - .default_str = NULL + .default_str = "" }, { .name = "message-limit", |