Merge pull request #4440 from zanbaldwin/z/uptime-boot-time-calc

uptime: correctly calculate boot-time
This commit is contained in:
Terts Diepraam 2023-02-26 16:49:49 +01:00 committed by GitHub
commit c1d85adcc9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -115,8 +115,8 @@ fn process_utmpx() -> (Option<time_t>, usize) {
USER_PROCESS => nusers += 1,
BOOT_TIME => {
let dt = line.login_time();
if dt.second() > 0 {
boot_time = Some(dt.second() as time_t);
if dt.unix_timestamp() > 0 {
boot_time = Some(dt.unix_timestamp() as time_t);
}
}
_ => continue,