diff options
author | 2015-11-12 08:19:18 +0000 | |
---|---|---|
committer | 2015-11-12 08:19:18 +0000 | |
commit | 99750857c2fc95fe1176628f31654431242034d0 (patch) | |
tree | d7466857ecb9620b8d816ca6054b03678d1cdcd1 | |
parent | IFQ_DROP means a drop because enqueue on the send q failed, not cos tx (diff) | |
download | wireguard-openbsd-99750857c2fc95fe1176628f31654431242034d0.tar.xz wireguard-openbsd-99750857c2fc95fe1176628f31654431242034d0.zip |
Default history-file should be "" not NULL, from Greg Onufe.
-rw-r--r-- | usr.bin/tmux/options-table.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/options-table.c b/usr.bin/tmux/options-table.c index 1ac4d6e1b07..9924159d951 100644 --- a/usr.bin/tmux/options-table.c +++ b/usr.bin/tmux/options-table.c @@ -1,4 +1,4 @@ -/* $OpenBSD: options-table.c,v 1.64 2015/11/11 23:23:33 nicm Exp $ */ +/* $OpenBSD: options-table.c,v 1.65 2015/11/12 08:19:18 nicm Exp $ */ /* * Copyright (c) 2011 Nicholas Marriott <nicm@users.sourceforge.net> @@ -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", |