From 110ba767e591946d6784acef87737850f2ad3ae9 Mon Sep 17 00:00:00 2001 From: nicm Date: Sat, 21 Aug 2021 10:28:05 +0000 Subject: Rename a member to match what it will be in future. --- cmd-queue.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmd-queue.c') diff --git a/cmd-queue.c b/cmd-queue.c index 687d037f..806f1cbb 100644 --- a/cmd-queue.c +++ b/cmd-queue.c @@ -413,7 +413,7 @@ cmdq_insert_hook(struct session *s, struct cmdq_item *item, av = args_first_value(args, flag); while (av != NULL) { xsnprintf(tmp, sizeof tmp, "hook_flag_%c_%d", flag, i); - cmdq_add_format(new_state, tmp, "%s", av->value); + cmdq_add_format(new_state, tmp, "%s", av->string); i++; av = args_next_value(av); } -- cgit