diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | sshfs.c | 3 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,7 @@ +2005-11-28 Miklos Szeredi <miklos@szeredi.hu> + + * Set statvfs::f_frsize + 2005-11-23 Miklos Szeredi <miklos@szeredi.hu> * Fix warnings on 64bit systems. Reported by D. R. Evans @@ -1780,7 +1780,8 @@ static int sshfs_statfs(const char *path, struct statvfs *buf) (void) path; buf->f_namemax = 255; - buf->f_bsize = 512; + buf->f_bsize = blksize; + buf->f_frsize = 512; buf->f_blocks = 999999999 * 2; buf->f_bfree = 999999999 * 2; buf->f_bavail = 999999999 * 2; |