diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2019-05-25 10:44:10 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2019-05-25 10:44:10 +0000 |
commit | 5e605a2eb3d7a6d0127c222357d9f1ed5a4507a4 (patch) | |
tree | 2a080ea688f9d1861f24e0dec09ce17410da8056 /usr.bin/tmux/cmd.c | |
parent | da5710c0b985b5e2b72f8cb1916f6ce590b561b9 (diff) |
Use client name when logging command queue.
Diffstat (limited to 'usr.bin/tmux/cmd.c')
-rw-r--r-- | usr.bin/tmux/cmd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/tmux/cmd.c b/usr.bin/tmux/cmd.c index 1245a1be1fe..821964e56d9 100644 --- a/usr.bin/tmux/cmd.c +++ b/usr.bin/tmux/cmd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd.c,v 1.151 2019/05/25 07:29:04 nicm Exp $ */ +/* $OpenBSD: cmd.c,v 1.152 2019/05/25 10:44:09 nicm Exp $ */ /* * Copyright (c) 2007 Nicholas Marriott <nicholas.marriott@gmail.com> @@ -383,9 +383,9 @@ cmd_get_alias(const char *name) static const struct cmd_entry * cmd_find(const char *name, char **cause) { - const struct cmd_entry **loop, *entry, *found = NULL; - int ambiguous; - char s[BUFSIZ]; + const struct cmd_entry **loop, *entry, *found = NULL; + int ambiguous; + char s[BUFSIZ]; ambiguous = 0; for (loop = cmd_table; *loop != NULL; loop++) { |