diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2013-02-12 20:12:10 +0000 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2013-02-12 20:12:10 +0000 |
commit | 102cb7743545a1d86c53e7958fc56ec599ba0cd7 (patch) | |
tree | 5c349ff6a331dc3647b24216fb4bd2ca3e076dfa /cmd-set-option.c | |
parent | 7360ff4496bfd159ac5935a18de675f067c375db (diff) | |
download | rtmux-102cb7743545a1d86c53e7958fc56ec599ba0cd7.tar.gz rtmux-102cb7743545a1d86c53e7958fc56ec599ba0cd7.tar.bz2 rtmux-102cb7743545a1d86c53e7958fc56ec599ba0cd7.zip |
Add -v to set and setw to show only option value.
Diffstat (limited to 'cmd-set-option.c')
-rw-r--r-- | cmd-set-option.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd-set-option.c b/cmd-set-option.c index ca99a977..f9956252 100644 --- a/cmd-set-option.c +++ b/cmd-set-option.c @@ -234,7 +234,7 @@ cmd_set_option_set(struct cmd *self, struct cmd_ctx *ctx, if (o == NULL) return (-1); - s = options_table_print_entry(oe, o); + s = options_table_print_entry(oe, o, 0); if (!args_has(args, 'q')) ctx->info(ctx, "set option: %s -> %s", oe->name, s); return (0); |