From: Lennart Poettering Date: Thu, 29 Nov 2018 13:49:36 +0000 (+0100) Subject: makefs: correct child process name X-Git-Tag: v240~125^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ae1889068796f6151703f598dc2bae88a167bc9d;p=thirdparty%2Fsystemd.git makefs: correct child process name Probably a copy/paste mistake --- diff --git a/src/partition/makefs.c b/src/partition/makefs.c index ab19577dca1..0b9bae55e7b 100644 --- a/src/partition/makefs.c +++ b/src/partition/makefs.c @@ -28,7 +28,7 @@ static int makefs(const char *type, const char *device) { if (access(mkfs, X_OK) != 0) return log_error_errno(errno, "%s is not executable: %m", mkfs); - r = safe_fork("(fsck)", FORK_RESET_SIGNALS|FORK_DEATHSIG|FORK_RLIMIT_NOFILE_SAFE|FORK_LOG, &pid); + r = safe_fork("(mkfs)", FORK_RESET_SIGNALS|FORK_DEATHSIG|FORK_RLIMIT_NOFILE_SAFE|FORK_LOG, &pid); if (r < 0) return r; if (r == 0) {