From 82ebd98c5f874cd10365d9563feccfbb8da188f4 Mon Sep 17 00:00:00 2001 From: nicm Date: Sat, 18 May 2019 21:14:10 +0000 Subject: Move the single command flag (CMD_CONTROL) into the shared flags. --- cmd-queue.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'cmd-queue.c') diff --git a/cmd-queue.c b/cmd-queue.c index fb2c7fac..93b9788e 100644 --- a/cmd-queue.c +++ b/cmd-queue.c @@ -266,13 +266,14 @@ static enum cmd_retval cmdq_fire_command(struct cmdq_item *item) { struct client *c = item->client; + struct cmdq_shared *shared = item->shared; struct cmd *cmd = item->cmd; const struct cmd_entry *entry = cmd->entry; enum cmd_retval retval; struct cmd_find_state *fsp, fs; int flags; - flags = !!(cmd->flags & CMD_CONTROL); + flags = !!(shared->flags & CMDQ_SHARED_CONTROL); cmdq_guard(item, "begin", flags); if (item->client == NULL) -- cgit v1.2.3