From 3995cc8efe102370a99f4b4ccbbf85247c43b4f0 Mon Sep 17 00:00:00 2001 From: buffet Date: Thu, 8 Nov 2018 22:59:10 +0100 Subject: [PATCH] Added a small comment hashtagdocumentation --- src/kiwmi/ipc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kiwmi/ipc.c b/src/kiwmi/ipc.c index fcb4380..d627c5e 100644 --- a/src/kiwmi/ipc.c +++ b/src/kiwmi/ipc.c @@ -69,7 +69,7 @@ handle_ipc_event(FILE *client, char *msg) char *command = strtok(NULL, ""); fclose(client); execl("/bin/sh", "/bin/sh", "-c", command, NULL); - g_is_about_to_quit = true; + g_is_about_to_quit = true; // in case the exec failed } else { warn("ignoring unknown command: %s\n", command); }