From d4c6cc937c4943d3195e0d2169bb52c466507b8e Mon Sep 17 00:00:00 2001 From: Alexander Kuleshov Date: Tue, 16 Feb 2016 00:04:49 +0600 Subject: logind: use deserialize_timestamp_value() which is introduced in the ebf30a086d commit. --- src/login/logind-user.c | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) (limited to 'src/login/logind-user.c') diff --git a/src/login/logind-user.c b/src/login/logind-user.c index 6b9c69cc45..aa27f73a87 100644 --- a/src/login/logind-user.c +++ b/src/login/logind-user.c @@ -321,17 +321,8 @@ int user_load(User *u) { if (s && s->display && display_is_local(s->display)) u->display = s; - if (realtime) { - unsigned long long l; - if (sscanf(realtime, "%llu", &l) > 0) - u->timestamp.realtime = l; - } - - if (monotonic) { - unsigned long long l; - if (sscanf(monotonic, "%llu", &l) > 0) - u->timestamp.monotonic = l; - } + deserialize_timestamp_value(realtime, &u->timestamp.realtime); + deserialize_timestamp_value(monotonic, &u->timestamp.monotonic); return r; } -- cgit v1.2.3-54-g00ecf