Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

last: fix some hostnames are not shown properly with --hostname option issue 212 #246

Open
wants to merge 7 commits into
base: main
Choose a base branch
from

Conversation

LionelMeli
Copy link

No description provided.

@sylvestre
Copy link
Contributor

could you please add a test to make sure we don't regress? thanks

@sylvestre sylvestre requested a review from Copilot March 8, 2025 09:41
Copy link

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PR Overview

This PR addresses an issue where the hostname is not displayed properly when using the --hostname option by refactoring the formatting logic.

  • Reformats the time and end time output by replacing a computed width with fixed-width fields.
  • Moves the hostname output to a separate conditional block to ensure it is printed correctly when required.

Reviewed Changes

File Description
src/uu/last/src/platform/unix.rs Adjusts formatting logic for time, end time, and hostname output.

Copilot reviewed 1 out of 1 changed files in this pull request and generated no comments.

Comments suppressed due to low confidence (2)

src/uu/last/src/platform/unix.rs:525

  • [nitpick] Consider replacing the magic number 12 with a named constant for clarity and maintainability.
write!(buf, " {time:<12}").unwrap_or_default();

src/uu/last/src/platform/unix.rs:526

  • [nitpick] Consider replacing the magic number 18 with a named constant for clarity and maintainability.
write!(buf, " {end_time_delta:<18}").unwrap_or_default();

@LionelMeli
Copy link
Author

LionelMeli commented Mar 11, 2025

Hello,

the last command doesn't work in mac OS and as I understand cannot work per this post:
https://unix.stackexchange.com/questions/468846/macos-what-file-does-the-command-last-get-its-information-from
and this one: https://superuser.com/questions/128705/ssh-last-login-last-and-os-x#:~:text=It%20seems%20modern%20Mac%20OS which explains " It seems modern Mac OS X records utmp/wtmp/lastlog-like information in the Apple SysLog (asl) database files at /var/log/asl/*."
In fact, after created a Mac OS VM (ventura thanks to quickemu project), the file /var/run/utmpx contains only the 2 entries (overwritten at each login). The uucore::utmpx::Utmpx doesn't fit the Mac OS requierement.

Maybe better to restrict the last command to the (true) *Nix platform? Let's me know.

@LionelMeli
Copy link
Author

Hello @sylvestre,
Could I do the same thing as per this PR: #234 (so mark things as unimplemented for systems other than Linux such as macOS)?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants