From 9dc9eb60e91c8336ee64e9a35218aaac9d60bc12 Mon Sep 17 00:00:00 2001 From: szaka Date: Fri, 12 Dec 2008 22:14:41 +0000 Subject: [PATCH] ntfs_fuse_statfs: fix f_bsize comment about optimal transfer block size --- src/ntfs-3g.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/ntfs-3g.c b/src/ntfs-3g.c index 83fe3f94..dc8f5a64 100644 --- a/src/ntfs-3g.c +++ b/src/ntfs-3g.c @@ -260,7 +260,10 @@ static int ntfs_fuse_statfs(const char *path __attribute__((unused)), if (!vol) return -ENODEV; - /* File system block size, used for optimal transfer block size. */ + /* + * File system block size. Used to calculate used/free space by df. + * Incorrectly documented as "optimal transfer block size". + */ sfs->f_bsize = vol->cluster_size; /* Fundamental file system block size, used as the unit. */