summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjhspetersson <jhspetersson@gmail.com>2024-01-09 13:30:08 +0100
committerjhspetersson <jhspetersson@gmail.com>2024-01-09 13:30:08 +0100
commiteff876c567d0c54d6920484f1c51f6cd654e67d1 (patch)
tree00b7b7a372221f0802e84bc7de35a1f1706dde74
parentd3ebdce00555f09a3fc18f199e22cf7c7faa43d0 (diff)
fix build
-rw-r--r--src/searcher.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/searcher.rs b/src/searcher.rs
index 67dfdd6..cc616d1 100644
--- a/src/searcher.rs
+++ b/src/searcher.rs
@@ -905,7 +905,7 @@ impl <'a> Searcher<'a> {
{
self.update_file_metadata(entry);
- if let Some(ref attrs) = self.file_metadata {
+ if let Some(ref attrs) = self.fms.file_metadata {
return Variant::from_int(attrs.dev() as i64);
}
}
@@ -917,7 +917,7 @@ impl <'a> Searcher<'a> {
{
self.update_file_metadata(entry);
- if let Some(ref attrs) = self.file_metadata {
+ if let Some(ref attrs) = self.fms.file_metadata {
return Variant::from_int(attrs.ino() as i64);
}
}
@@ -929,7 +929,7 @@ impl <'a> Searcher<'a> {
{
self.update_file_metadata(entry);
- if let Some(ref attrs) = self.file_metadata {
+ if let Some(ref attrs) = self.fms.file_metadata {
return Variant::from_int(attrs.blocks() as i64);
}
}
@@ -941,7 +941,7 @@ impl <'a> Searcher<'a> {
{
self.update_file_metadata(entry);
- if let Some(ref attrs) = self.file_metadata {
+ if let Some(ref attrs) = self.fms.file_metadata {
return Variant::from_int(attrs.nlink() as i64);
}
}