]> err.no Git - util-linux/commitdiff
hwclock: do not create a zero adjfile
authorAlain Guibert <alguibert+ulng@free.fr>
Mon, 24 Sep 2007 10:57:22 +0000 (12:57 +0200)
committerKarel Zak <kzak@redhat.com>
Thu, 25 Oct 2007 23:02:44 +0000 (01:02 +0200)
When hwclock --hctosys is started very early during the system startup,
with / still mounted read-only, and there was no /etc/adjtime file,
hwclock fails creating a default adjfile full of zeroes, and prints an
error message. I believe that such zero adjfile is not necessary,
because it means exactly the same as no adjfile at all.

The attached patch prevents creation of a zero adjfile, of course unless
something gets changed (this never happens during a --hctosys).

Signed-off-by: Alain Guibert <alguibert+ulng@free.fr>
hwclock/hwclock.c

index bbacf5dc1996ef1de78bbfeb848b3c25c77715b7..f138a9fa1c4cf5d765c1028c993fce2eae2f240c 100644 (file)
@@ -257,6 +257,7 @@ read_adjtime(struct adjtime *adjtime_p) {
       adjtime_p->not_adjusted = 0;
       adjtime_p->last_calib_time = 0;
       adjtime_p->local_utc = UNKNOWN;
+      adjtime_p->dirty = FALSE;        /* don't create a zero adjfile */
 
       return 0;
     }