Skip to content

Commit

Permalink
change labels for .field FIXMEs
Browse files Browse the repository at this point in the history
  • Loading branch information
lvllvl authored Jan 7, 2025
1 parent ebe83e9 commit 64e5128
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/unix/bsd/netbsdlike/openbsd/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -780,7 +780,7 @@ cfg_if! {
.field("d_reclen", &self.d_reclen)
.field("d_type", &self.d_type)
.field("d_namlen", &self.d_namlen)
// FIXME(openbsd): .field("d_name", &self.d_name)
// FIXME(debug): .field("d_name", &self.d_name)
.finish()
}
}
Expand Down Expand Up @@ -873,8 +873,8 @@ cfg_if! {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.debug_struct("lastlog")
.field("ll_time", &self.ll_time)
// FIXME(openbsd): .field("ll_line", &self.ll_line)
// FIXME(openbsd): .field("ll_host", &self.ll_host)
// FIXME(debug): .field("ll_line", &self.ll_line)
// FIXME(debug): .field("ll_host", &self.ll_host)
.finish()
}
}
Expand Down Expand Up @@ -913,9 +913,9 @@ cfg_if! {
impl fmt::Debug for utmp {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.debug_struct("utmp")
// FIXME(openbsd): .field("ut_line", &self.ut_line)
// FIXME(openbsd): .field("ut_name", &self.ut_name)
// FIXME(openbsd): .field("ut_host", &self.ut_host)
// FIXME(debug): .field("ut_line", &self.ut_line)
// FIXME(debug): .field("ut_name", &self.ut_name)
// FIXME(debug): .field("ut_host", &self.ut_host)
.field("ut_time", &self.ut_time)
.finish()
}
Expand Down Expand Up @@ -1048,10 +1048,10 @@ cfg_if! {
.field("f_namemax", &self.f_namemax)
.field("f_owner", &self.f_owner)
.field("f_ctime", &self.f_ctime)
// FIXME(openbsd): .field("f_fstypename", &self.f_fstypename)
// FIXME(openbsd): .field("f_mntonname", &self.f_mntonname)
// FIXME(openbsd): .field("f_mntfromname", &self.f_mntfromname)
// FIXME(openbsd): .field("f_mntfromspec", &self.f_mntfromspec)
// FIXME(debug): .field("f_fstypename", &self.f_fstypename)
// FIXME(debug): .field("f_mntonname", &self.f_mntonname)
// FIXME(debug): .field("f_mntfromname", &self.f_mntfromname)
// FIXME(debug): .field("f_mntfromspec", &self.f_mntfromspec)
.field("mount_info", &self.mount_info)
.finish()
}
Expand Down

0 comments on commit 64e5128

Please sign in to comment.