diff options
author | Benjamin Robin <dev@benjarobin.fr> | 2016-02-15 23:26:34 +0100 |
---|---|---|
committer | Benjamin Robin <dev@benjarobin.fr> | 2016-02-15 23:26:34 +0100 |
commit | b895a7353b739e7186f6f51f3a415485b5afd80f (patch) | |
tree | b49160f789b98e93b979ce4cc53c47f5ee871880 /src/login/logind-session.c | |
parent | 11ab173d4067a4ed6fab811ba2159456053fd4c1 (diff) |
time-util: Rename and fix call of deserialize_timestamp_value()
The deserialize_timestamp_value() is renamed timestamp_deserialize() to be more
consistent with dual_timestamp_deserialize()
And add the NULL check back on realtime and monotonic
Diffstat (limited to 'src/login/logind-session.c')
-rw-r--r-- | src/login/logind-session.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/login/logind-session.c b/src/login/logind-session.c index 9874cdae5e..e088225beb 100644 --- a/src/login/logind-session.c +++ b/src/login/logind-session.c @@ -446,8 +446,10 @@ int session_load(Session *s) { safe_close(fd); } - deserialize_timestamp_value(realtime, &s->timestamp.realtime); - deserialize_timestamp_value(monotonic, &s->timestamp.monotonic); + if (realtime) + timestamp_deserialize(realtime, &s->timestamp.realtime); + if (monotonic) + timestamp_deserialize(monotonic, &s->timestamp.monotonic); if (controller) { if (bus_name_has_owner(s->manager->bus, controller, NULL) > 0) |