X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=blobdiff_plain;f=src%2Fmanager.c;h=e90757eacd76873a4e844cef11762463f19816aa;hp=fb2656eb3ddf30c141e90e167c498c191b407a44;hb=b9ba604e8720c30deb7095b049b577eec1cbb74a;hpb=4e4343146ade25b1ccfc927e2807d854be863ec4 diff --git a/src/manager.c b/src/manager.c index fb2656eb3..e90757eac 100644 --- a/src/manager.c +++ b/src/manager.c @@ -2490,15 +2490,17 @@ int manager_serialize(Manager *m, FILE *f, FDSet *fds) { assert(f); assert(fds); - fprintf(f, "startup-timestamp=%llu %llu\n\n", + fprintf(f, "startup-timestamp=%llu %llu\n", (unsigned long long) m->startup_timestamp.realtime, (unsigned long long) m->startup_timestamp.monotonic); if (dual_timestamp_is_set(&m->finish_timestamp)) - fprintf(f, "finish-timestamp=%llu %llu\n\n", + fprintf(f, "finish-timestamp=%llu %llu\n", (unsigned long long) m->finish_timestamp.realtime, (unsigned long long) m->finish_timestamp.monotonic); + fputc('\n', f); + HASHMAP_FOREACH_KEY(u, t, m->units, i) { if (u->meta.id != t) continue; @@ -2560,8 +2562,8 @@ int manager_deserialize(Manager *m, FILE *f, FDSet *fds) { } else if (startswith(l, "finish-timestamp=")) { unsigned long long a, b; - if (sscanf(l+18, "%lli %llu", &a, &b) != 2) - log_debug("Failed to parse finish timestamp value %s", l+18); + if (sscanf(l+17, "%lli %llu", &a, &b) != 2) + log_debug("Failed to parse finish timestamp value %s", l+17); else { m->finish_timestamp.realtime = a; m->finish_timestamp.monotonic = b;