Replace hand-made masking by call to masked() method in FileType

This commit is contained in:
Arthur Carcano 2022-12-09 15:04:36 +01:00
parent 4198d2975d
commit 24cd863a38

View File

@ -560,7 +560,7 @@ impl FileType {
}
pub fn is(&self, mode: mode_t) -> bool {
self.mode & libc::S_IFMT == mode
self.masked() == mode
}
fn masked(&self) -> mode_t {