From 2bf317ef164d378fc10ee611ea0397b3ee69ffef Mon Sep 17 00:00:00 2001 From: Aaron Jacobs Date: Fri, 27 Feb 2015 11:48:48 +1100 Subject: [PATCH] Corrected the notion of Dirent.Offset. --- fuseutil/dirent.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fuseutil/dirent.go b/fuseutil/dirent.go index 93e646a..59ebf39 100644 --- a/fuseutil/dirent.go +++ b/fuseutil/dirent.go @@ -15,8 +15,8 @@ type DirentType bazilfuse.DirentType // A struct representing an entry within a directory file, describing a child. // See notes on fuse.ReadDirResponse and on AppendDirent for details. type Dirent struct { - // The (opaque) offset within the directory file of this entry. See notes on - // fuse.ReadDirRequest.Offset for details. + // The (opaque) offset within the directory file of the entry following this + // one. See notes on fuse.ReadDirRequest.Offset for details. Offset fuse.DirOffset // The inode of the child file or directory, and its name within the parent.