-
Notifications
You must be signed in to change notification settings - Fork 31
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
base: main
Are you sure you want to change the base?
Conversation
could you please add a test to make sure we don't regress? thanks |
There was a problem hiding this 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();
Hello, the last command doesn't work in mac OS and as I understand cannot work per this post: Maybe better to restrict the last command to the (true) *Nix platform? Let's me know. |
Hello @sylvestre, |
No description provided.