diff options
author | Tiago Cunha <tcunha@gmx.com> | 2009-12-12 01:01:11 +0000 |
---|---|---|
committer | Tiago Cunha <tcunha@gmx.com> | 2009-12-12 01:01:11 +0000 |
commit | 7459be544eb11162be8af09c77d349f8213df51a (patch) | |
tree | c54b007f6b828a4345b273e6e131fe6b8b6c323c /cmd-set-option.c | |
parent | b70be285b79f120d05c757e756178442c614cad8 (diff) | |
download | rtmux-7459be544eb11162be8af09c77d349f8213df51a.tar.gz rtmux-7459be544eb11162be8af09c77d349f8213df51a.tar.bz2 rtmux-7459be544eb11162be8af09c77d349f8213df51a.zip |
Sync OpenBSD patchset 586:
Use quiet variable, and add missing sentinel to options array.
Diffstat (limited to 'cmd-set-option.c')
-rw-r--r-- | cmd-set-option.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd-set-option.c b/cmd-set-option.c index 1ded4d3c..ff578542 100644 --- a/cmd-set-option.c +++ b/cmd-set-option.c @@ -1,4 +1,4 @@ -/* $Id: cmd-set-option.c,v 1.90 2009-12-10 16:59:02 tcunha Exp $ */ +/* $Id: cmd-set-option.c,v 1.91 2009-12-12 01:01:11 tcunha Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net> @@ -75,6 +75,7 @@ const char *set_option_bell_action_list[] = { const struct set_option_entry set_option_table[] = { { "quiet", SET_OPTION_FLAG, 0, 0, NULL }, + { NULL, 0, 0, 0, NULL } }; const struct set_option_entry set_session_option_table[] = { |