From 7062b0e65dcbb94bb190f6c50f4089b2ea6278bb Mon Sep 17 00:00:00 2001 From: nicm Date: Thu, 12 Nov 2015 08:19:18 +0000 Subject: [PATCH] Default history-file should be "" not NULL, from Greg Onufe. --- options-table.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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",