Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 12 additions & 15 deletions src/uu/hostid/src/hostid.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,27 +7,14 @@

use clap::Command;
use libc::{c_long, gethostid};
use std::io::{Write, stdout};
use uucore::{error::UResult, format_usage};

use uucore::translate;

#[uucore::main]
pub fn uumain(args: impl uucore::Args) -> UResult<()> {
uucore::clap_localization::handle_clap_result(uu_app(), args)?;
hostid();
Ok(())
}

pub fn uu_app() -> Command {
Command::new(uucore::util_name())
.version(uucore::crate_version!())
.help_template(uucore::localized_help_template(uucore::util_name()))
.about(translate!("hostid-about"))
.override_usage(format_usage(&translate!("hostid-usage")))
.infer_long_args(true)
}

fn hostid() {
/*
* POSIX says gethostid returns a "32-bit identifier" but is silent
* whether it's sign-extended. Turn off any sign-extension. This
Expand All @@ -43,5 +30,15 @@ fn hostid() {
let mask = 0xffff_ffff;

result &= mask;
println!("{result:0>8x}");
writeln!(stdout().lock(), "{result:0>8x}")?;
Ok(())
}

pub fn uu_app() -> Command {
Command::new(uucore::util_name())
.version(uucore::crate_version!())
.help_template(uucore::localized_help_template(uucore::util_name()))
.about(translate!("hostid-about"))
.override_usage(format_usage(&translate!("hostid-usage")))
.infer_long_args(true)
}
Loading