diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2013-01-17 22:44:00 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2013-01-17 22:44:00 +0100 |
commit | bcf1bfabdef4481d4748e6c4a82b579af628fd75 (patch) | |
tree | 8da8ac1bd99cc996fb3ab725405a7bb06bdca776 /libc/misc/statfs/statfs64.c | |
parent | 1e2e4ac6193ffe0900bd392fa3c596883771eb34 (diff) |
statfs: support f_frsize
closes bugzilla #5834
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc/misc/statfs/statfs64.c')
-rw-r--r-- | libc/misc/statfs/statfs64.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libc/misc/statfs/statfs64.c b/libc/misc/statfs/statfs64.c index c11b7db23..99227977d 100644 --- a/libc/misc/statfs/statfs64.c +++ b/libc/misc/statfs/statfs64.c @@ -41,6 +41,9 @@ int statfs64 (const char *file, struct statfs64 *buf) buf->f_ffree = buf32.f_ffree; buf->f_fsid = buf32.f_fsid; buf->f_namelen = buf32.f_namelen; +#ifdef _STATFS_F_FRSIZE + buf->f_frsize = buf32.f_frsize; +#endif memcpy (buf->f_spare, buf32.f_spare, sizeof (buf32.f_spare)); return 0; |