fix: missing gidnumber on display for uut

This commit is contained in:
James Hodgkinson 2025-05-01 14:09:20 +10:00
parent b588f5e688
commit 8413e6fc09
No known key found for this signature in database

View file

@ -87,6 +87,7 @@ impl fmt::Display for UnixUserToken {
writeln!(f, "name: {}", self.name)?;
writeln!(f, "displayname: {}", self.displayname)?;
writeln!(f, "uuid: {}", self.uuid)?;
writeln!(f, "gidnumber: {}", self.gidnumber)?;
match &self.shell {
Some(s) => writeln!(f, "shell: {}", s)?,
None => writeln!(f, "shell: <none>")?,