Changes by: cha0smaster
Update of /cvsroot/linux-ntfs/ntfsprogs/ntfsprogs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15140/ntfsprogs
Modified Files:
ntfsmount.c
Log Message:
ntfsmount: Apply patch from Yuval to fix 'df' output.
Index: ntfsmount.c
===================================================================
RCS file: /cvsroot/linux-ntfs/ntfsprogs/ntfsprogs/ntfsmount.c,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -p -r1.26 -r1.27
--- ntfsmount.c 26 Aug 2005 12:23:01 -0000 1.26
+++ ntfsmount.c 31 Aug 2005 14:31:53 -0000 1.27
@@ -188,7 +188,7 @@ static int ntfs_fuse_statfs(const char *
/* Type of filesystem. */
sfs->f_type = NTFS_SB_MAGIC;
/* Optimal transfer block size. */
- sfs->f_bsize = NTFS_BLOCK_SIZE;
+ sfs->f_bsize = vol->cluster_size;
/*
* Total data blocks in file system in units of f_bsize and since
* inodes are also stored in data blocs ($MFT is a file) this is just
|