From da1f55e340a7466f71bf5585b39e2d6351563af1 Mon Sep 17 00:00:00 2001 From: Albert S Date: Thu, 20 Aug 2020 13:33:33 +0200 Subject: [PATCH] messages: replace "child" with "command" for clarity --- adhocify.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/adhocify.c b/adhocify.c index 96fd2ba..86fb961 100644 --- a/adhocify.c +++ b/adhocify.c @@ -406,11 +406,11 @@ void handle_event(struct inotify_event *event) free(eventfile_abspath); return; } - logwrite("Starting execution of child %s\n", prog); + logwrite("Starting execution of command %s\n", prog); bool r = run_prog(eventfile_abspath, event->mask); if(!r) { - logerror("Execution of child %s failed\n", prog); + logerror("Execution of command %s failed\n", prog); exit(EXIT_FAILURE); } @@ -661,7 +661,7 @@ void child_handler(int signum, siginfo_t *info, void *context) } if(must_exit) { - logwrite("child exited with specified exit code, exiting too\n"); + logwrite("command exited with specified exit code, exiting too\n"); exit(adhocify_exit_code); } }