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-string.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'cmd-string.c') diff --git a/cmd-string.c b/cmd-string.c index 2cf63294..7c6d9ad6 100644 --- a/cmd-string.c +++ b/cmd-string.c @@ -133,7 +133,8 @@ cmd_string_parse(const char *s, struct cmd_list **cmdlist, const char *file, if (argc == 0) goto out; - *cmdlist = cmd_list_parse(argc, argv, file, line, cause); + *cmdlist = cmd_list_parse(argc, argv, file, line, + cause); if (*cmdlist == NULL) goto out; -- cgit