summaryrefslogtreecommitdiff
path: root/src/fuse
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/fuse/io.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fuse/io.rs b/src/fuse/io.rs
index f3dc5b1..fe2fb36 100644
--- a/src/fuse/io.rs
+++ b/src/fuse/io.rs
@@ -246,14 +246,14 @@ impl Attrs {
}
#[must_use]
- pub fn times(self, access: Timestamp, modify: Timestamp, create: Timestamp) -> Self {
+ pub fn times(self, access: Timestamp, modify: Timestamp, change: Timestamp) -> Self {
Attrs(proto::Attrs {
atime: access.seconds,
mtime: modify.seconds,
- ctime: create.seconds,
+ ctime: change.seconds,
atimensec: access.nanoseconds,
mtimensec: modify.nanoseconds,
- ctimensec: create.nanoseconds,
+ ctimensec: change.nanoseconds,
..self.0
})
}