summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBen S <ogham@bsago.me>2015-09-03 13:38:06 +0100
committerBen S <ogham@bsago.me>2015-09-03 13:38:06 +0100
commit83f05ffb3c2c718d428153312b4e0392387d7e6d (patch)
tree432355d35fd55d5d4d34ff7971b0a1202a79f557
parent4424a6df96d1ffc00578f3845c0c1642551cff6e (diff)
Remove redundant attribute field
-rw-r--r--src/file.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/file.rs b/src/file.rs
index e64333f..979ca27 100644
--- a/src/file.rs
+++ b/src/file.rs
@@ -297,7 +297,6 @@ impl<'dir> File<'dir> {
other_read: has_bit(unix::fs::OTHER_READ),
other_write: has_bit(unix::fs::OTHER_WRITE),
other_execute: has_bit(unix::fs::OTHER_EXECUTE),
- attribute: false, // !self.xattrs.is_empty()
}
}
@@ -423,7 +422,6 @@ pub mod fields {
pub other_read: bool,
pub other_write: bool,
pub other_execute: bool,
- pub attribute: bool,
}
pub struct Links {