diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2013-03-24 09:27:19 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2013-03-24 09:27:19 +0000 |
commit | bb8457b166635bc8d069012bb33d94e44178bfdc (patch) | |
tree | fb327f1e877f6663043d8b8bb66b0513cb2146cb /cmd-refresh-client.c | |
parent | 3eae71b5b28cf591f6cff652e2f2c67be394c040 (diff) | |
download | rtmux-bb8457b166635bc8d069012bb33d94e44178bfdc.tar.gz rtmux-bb8457b166635bc8d069012bb33d94e44178bfdc.tar.bz2 rtmux-bb8457b166635bc8d069012bb33d94e44178bfdc.zip |
Fix error reporting for client commands by adding a flag to
cmd_find_client to tell it whether or not to show errors, sometimes it's
needed and sometimes not.
Diffstat (limited to 'cmd-refresh-client.c')
-rw-r--r-- | cmd-refresh-client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd-refresh-client.c b/cmd-refresh-client.c index 885e8165..25df230f 100644 --- a/cmd-refresh-client.c +++ b/cmd-refresh-client.c @@ -44,7 +44,7 @@ cmd_refresh_client_exec(struct cmd *self, struct cmd_ctx *ctx) const char *size; u_int w, h; - if ((c = cmd_find_client(ctx, args_get(args, 't'))) == NULL) + if ((c = cmd_find_client(ctx, args_get(args, 't'), 0)) == NULL) return (CMD_RETURN_ERROR); if (args_has(args, 'C')) { |