diff options
author | Jeff Sickel <jas@corpus-callosum.com> | 2008-12-10 13:26:16 -0600 |
---|---|---|
committer | Jeff Sickel <jas@corpus-callosum.com> | 2008-12-10 13:26:16 -0600 |
commit | f0cd09f3528565c418031a3666f8dbbcb0d3b9bf (patch) | |
tree | 6dac2bba597c79ca7bd1db77d2115f9245b35d0e /src/cmd/9pfuse | |
parent | fd0a0b2a6216ae9b1773da719c3c0e53ff2e87c8 (diff) | |
download | plan9port-f0cd09f3528565c418031a3666f8dbbcb0d3b9bf.tar.gz plan9port-f0cd09f3528565c418031a3666f8dbbcb0d3b9bf.tar.bz2 plan9port-f0cd09f3528565c418031a3666f8dbbcb0d3b9bf.zip |
MacFUSE 2.0 updates
Diffstat (limited to 'src/cmd/9pfuse')
-rw-r--r-- | src/cmd/9pfuse/fuse_kernel.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/cmd/9pfuse/fuse_kernel.h b/src/cmd/9pfuse/fuse_kernel.h index cfba679d..07bd91d9 100644 --- a/src/cmd/9pfuse/fuse_kernel.h +++ b/src/cmd/9pfuse/fuse_kernel.h @@ -3,8 +3,6 @@ Copyright (C) 2001-2007 Miklos Szeredi <miklos@szeredi.hu> - - This -- and only this -- header file may also be distributed under the terms of the BSD Licence as follows: @@ -63,9 +61,15 @@ struct fuse_attr { __u64 atime; __u64 mtime; __u64 ctime; +#if (__FreeBSD__ >= 10) + __u64 crtime; +#endif /* __FreeBSD__ >= 10 */ __u32 atimensec; __u32 mtimensec; __u32 ctimensec; +#if (__FreeBSD__ >= 10) + __u32 crtimensec; +#endif /* __FreeBSD__ >= 10 */ __u32 mode; __u32 nlink; __u32 uid; @@ -73,7 +77,6 @@ struct fuse_attr { __u32 rdev; #if (__FreeBSD__ >= 10) __u32 flags; /* file flags; see chflags(2) */ - __u32 padding; #endif /* __FreeBSD__ >= 10 */ }; |