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
+2 -2
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,