summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornicm <nicm@openbsd.org>2015-11-12 08:19:18 +0000
committernicm <nicm@openbsd.org>2015-11-12 08:19:18 +0000
commit99750857c2fc95fe1176628f31654431242034d0 (patch)
treed7466857ecb9620b8d816ca6054b03678d1cdcd1
parentIFQ_DROP means a drop because enqueue on the send q failed, not cos tx (diff)
downloadwireguard-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.c4
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",