diff options
author | 2009-11-13 19:53:28 +0000 | |
---|---|---|
committer | 2009-11-13 19:53:28 +0000 | |
commit | 0e9de5d4b318503e468d9cb019fbe84d03290ff0 (patch) | |
tree | fb80958bd389f443b9e6717b7ab267cb944ce7db /usr.bin/tmux/cmd-if-shell.c | |
parent | 1.8 broke things, back it out, correct fix coming from pjanzen (diff) | |
download | wireguard-openbsd-0e9de5d4b318503e468d9cb019fbe84d03290ff0.tar.xz wireguard-openbsd-0e9de5d4b318503e468d9cb019fbe84d03290ff0.zip |
Get rid of the ugly CMD_CHFLAG macro and use a const string (eg "dDU") in the
command entry structs and a couple of functions to check/set the flags.
Diffstat (limited to 'usr.bin/tmux/cmd-if-shell.c')
-rw-r--r-- | usr.bin/tmux/cmd-if-shell.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tmux/cmd-if-shell.c b/usr.bin/tmux/cmd-if-shell.c index 190bc65e8cb..ecb6a12657d 100644 --- a/usr.bin/tmux/cmd-if-shell.c +++ b/usr.bin/tmux/cmd-if-shell.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cmd-if-shell.c,v 1.6 2009/11/01 23:20:37 nicm Exp $ */ +/* $OpenBSD: cmd-if-shell.c,v 1.7 2009/11/13 19:53:29 nicm Exp $ */ /* * Copyright (c) 2009 Tiago Cunha <me@tiagocunha.org> @@ -36,7 +36,7 @@ void cmd_if_shell_free(void *); const struct cmd_entry cmd_if_shell_entry = { "if-shell", "if", "shell-command command", - CMD_ARG2, 0, + CMD_ARG2, "", cmd_target_init, cmd_target_parse, cmd_if_shell_exec, |