From 50a47d3b7e587fabcce85bc5af10450a3707821a Mon Sep 17 00:00:00 2001 From: Duncan Overbruck Date: Mon, 3 Feb 2020 22:26:55 +0100 Subject: [PATCH] timestamp.c: remove warning for normal case --- timestamp.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/timestamp.c b/timestamp.c index c7edb56..6b4354c 100644 --- a/timestamp.c +++ b/timestamp.c @@ -205,10 +205,9 @@ timestamp_check(int fd, int secs) if (st.st_uid != 0 || st.st_gid != getgid() || st.st_mode != (S_IFREG | 0000)) errx(1, "timestamp uid, gid or mode wrong"); - if (!timespecisset(&st.st_atim) || !timespecisset(&st.st_mtim)) { - warnx("timestamp atim or mtime not set"); + /* this timestamp was created but never set, invalid but no error */ + if (!timespecisset(&st.st_atim) || !timespecisset(&st.st_mtim)) return 0; - } if (clock_gettime(CLOCK_BOOTTIME, &ts[0]) == -1 || clock_gettime(CLOCK_REALTIME, &ts[1]) == -1) { -- 2.39.2