1
0
mirror of https://github.com/systemd/systemd.git synced 2024-10-30 06:25:37 +03:00

timesyncd: add comment what bool arg is

This commit is contained in:
Lennart Poettering 2022-03-18 14:07:22 +01:00
parent 853efc39ea
commit 0fd08026f8

View File

@ -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);
}