From: Lennart Poettering Date: Mon, 1 Feb 2016 20:28:24 +0000 (+0100) Subject: core: when saving timer unit time values, store them in raw µs X-Git-Tag: v229~50^2~9 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=5c1f0be1efd2bed25a8759ae0f9927e82afc086b;p=thirdparty%2Fsystemd.git core: when saving timer unit time values, store them in raw µs Let's simplify things a bit, and make sure we don't lose accuracy. --- diff --git a/src/core/dbus-timer.c b/src/core/dbus-timer.c index 212f9e1d8d8..321ed5da370 100644 --- a/src/core/dbus-timer.c +++ b/src/core/dbus-timer.c @@ -278,10 +278,8 @@ static int bus_timer_set_transient_property( return r; if (mode != UNIT_CHECK) { - char time[FORMAT_TIMESPAN_MAX]; - t->accuracy_usec = u; - unit_write_drop_in_private_format(UNIT(t), mode, name, "%s=%s\n", name, format_timespan(time, sizeof(time), u, USEC_PER_MSEC)); + unit_write_drop_in_private_format(UNIT(t), mode, name, "AccuracySec=" USEC_FMT "us\n", u); } return 1; @@ -294,10 +292,8 @@ static int bus_timer_set_transient_property( return r; if (mode != UNIT_CHECK) { - char time[FORMAT_TIMESPAN_MAX]; - t->random_usec = u; - unit_write_drop_in_private_format(UNIT(t), mode, name, "RandomizedDelaySec=%s\n", format_timespan(time, sizeof(time), u, USEC_PER_MSEC)); + unit_write_drop_in_private_format(UNIT(t), mode, name, "RandomizedDelaySec=" USEC_FMT "us\n", u); } return 1;