lib/run_part: Unify error messages

At least if they can be assigned directly to a function call.

Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
This commit is contained in:
Tobias Stoeckmann
2024-09-14 00:14:20 +02:00
committed by Iker Pedrosa
parent 62bd261fbe
commit 76c97ed7ec

View File

@@ -24,7 +24,7 @@ static int run_part (char *script_path, const char *name, const char *action)
pid=fork();
if (pid==-1) {
fprintf (shadow_logfd, "Could not fork: %s\n", strerror(errno));
fprintf (shadow_logfd, "fork: %s\n", strerror(errno));
return 1;
}
if (pid==0) {
@@ -61,7 +61,7 @@ int run_parts (const char *directory, const char *name, const char *action)
struct stat sb;
if (asprintf(&s, "%s/%s", directory, namelist[n]->d_name) == -1) {
fprintf (shadow_logfd, "could not allocate memory\n");
fprintf (shadow_logfd, "asprintf: %s\n", strerror(errno));
for (; n<scanlist; n++) {
free(namelist[n]);
}