From: Tobias Stoeckmann Date: Tue, 23 Dec 2025 11:04:23 +0000 (+0100) Subject: lib/run_part.c: Fix error message X-Git-Tag: 4.19.0~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f6d9e5c019aeb62e98dfccf1d892f2b10dd29ca9;p=thirdparty%2Fshadow.git lib/run_part.c: Fix error message The failing function call was wait, not waitpid. Reviewed-by: Alejandro Colomar Signed-off-by: Tobias Stoeckmann --- diff --git a/lib/run_part.c b/lib/run_part.c index fb32825b9..f3ac46dbf 100644 --- a/lib/run_part.c +++ b/lib/run_part.c @@ -42,7 +42,7 @@ static int run_part(char *script_path, const char *name, const char *action) return (wait_status); } - fprintf(shadow_logfd, "waitpid: %s\n", strerrno()); + fprintf(shadow_logfd, "wait: %s\n", strerrno()); return (1); }