From: Lennart Poettering Date: Fri, 18 Mar 2022 13:07:22 +0000 (+0100) Subject: timesyncd: add comment what bool arg is X-Git-Tag: v251-rc1~92^2~11 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0fd08026f83f6e8c39eb5025470f84b6cc5f2742;p=thirdparty%2Fsystemd.git timesyncd: add comment what bool arg is --- diff --git a/src/timesync/timesyncd.c b/src/timesync/timesyncd.c index bc3e6ee91bc..98766a9ce7d 100644 --- a/src/timesync/timesyncd.c +++ b/src/timesync/timesyncd.c @@ -63,7 +63,7 @@ static int load_clock_timestamp(uid_t uid, gid_t gid) { } /* create stamp file with the compiled-in date */ - r = touch_file(CLOCK_FILE, false, min, uid, gid, 0644); + r = touch_file(CLOCK_FILE, /* parents= */ false, min, uid, gid, 0644); if (r < 0) log_debug_errno(r, "Failed to create %s, ignoring: %m", CLOCK_FILE); }