summaryrefslogtreecommitdiffstats
path: root/cmd-show-messages.c
diff options
context:
space:
mode:
authornicm <nicm>2016-10-14 22:14:22 +0000
committernicm <nicm>2016-10-14 22:14:22 +0000
commited971268be7cfd5a4a8223211401654b30a57cbd (patch)
treeced6a43b231a88614d2419c9b16b8dc914e82b61 /cmd-show-messages.c
parentd413a945acd9ffbc5d34a4d459b82721e648541d (diff)
Add CMD_AFTERHOOK flag to the easy commands that don't need any special handling.
Diffstat (limited to 'cmd-show-messages.c')
-rw-r--r--cmd-show-messages.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd-show-messages.c b/cmd-show-messages.c
index 0f607aa2..f01632ff 100644
--- a/cmd-show-messages.c
+++ b/cmd-show-messages.c
@@ -40,7 +40,7 @@ const struct cmd_entry cmd_show_messages_entry = {
.tflag = CMD_CLIENT,
- .flags = 0,
+ .flags = CMD_AFTERHOOK,
.exec = cmd_show_messages_exec
};
@@ -51,7 +51,7 @@ const struct cmd_entry cmd_server_info_entry = {
.args = { "", 0, 0 },
.usage = "",
- .flags = 0,
+ .flags = CMD_AFTERHOOK,
.exec = cmd_show_messages_exec
};