diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2004-01-04 19:37:55 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2004-01-04 19:37:55 +0000 |
commit | 427422fb2187c264e191e896e8d09886e12b16b8 (patch) | |
tree | 871adb378828bcfb548b5c53a1f13dc013aad7af /devel/strace/files/patch-file.c | |
parent | o) Update to version 3.10.9 (diff) |
- Update to 4.5.1
PR: ports/60829
Submitted by: Matthias Andree <matthias.andree@web.de>
Approved by: maintainer
Diffstat (limited to 'devel/strace/files/patch-file.c')
-rw-r--r-- | devel/strace/files/patch-file.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/devel/strace/files/patch-file.c b/devel/strace/files/patch-file.c new file mode 100644 index 000000000000..fa363c4e967a --- /dev/null +++ b/devel/strace/files/patch-file.c @@ -0,0 +1,20 @@ +--- file.c.orig Thu Nov 13 23:32:27 2003 ++++ file.c Fri Jan 2 19:11:23 2004 +@@ -1387,7 +1387,7 @@ + statbuf.f_bsize, statbuf.f_blocks, statbuf.f_bfree); + tprintf("f_bavail=%u, f_files=%u, f_ffree=%u, f_fsid={%d, %d}, f_namelen=%u", + statbuf.f_bavail,statbuf.f_files, statbuf.f_ffree, +- statbuf.f_fsid.__val[0], statbuf.f_fsid.__val[1], ++ statbuf.f_fsid.val[0], statbuf.f_fsid.val[1], + statbuf.f_namelen); + #else /* !ALPHA */ + tprintf("{f_type=%s, f_bsize=%lu, f_blocks=%lu, f_bfree=%lu, ", +@@ -1399,7 +1399,7 @@ + (unsigned long)statbuf.f_bavail, + (unsigned long)statbuf.f_files, + (unsigned long)statbuf.f_ffree, +- statbuf.f_fsid.__val[0], statbuf.f_fsid.__val[1]); ++ statbuf.f_fsid.val[0], statbuf.f_fsid.val[1]); + #ifdef LINUX + tprintf(", f_namelen=%lu", (unsigned long)statbuf.f_namelen); + #endif /* LINUX */ |