From ed971268be7cfd5a4a8223211401654b30a57cbd Mon Sep 17 00:00:00 2001 From: nicm Date: Fri, 14 Oct 2016 22:14:22 +0000 Subject: Add CMD_AFTERHOOK flag to the easy commands that don't need any special handling. --- cmd-list-clients.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmd-list-clients.c') diff --git a/cmd-list-clients.c b/cmd-list-clients.c index efe19652..d4bf02a9 100644 --- a/cmd-list-clients.c +++ b/cmd-list-clients.c @@ -44,7 +44,7 @@ const struct cmd_entry cmd_list_clients_entry = { .tflag = CMD_SESSION, - .flags = CMD_READONLY, + .flags = CMD_READONLY|CMD_AFTERHOOK, .exec = cmd_list_clients_exec }; -- cgit