diff options
author | Björn Jacke <bj@sernet.de> | 2009-05-26 22:37:17 +0200 |
---|---|---|
committer | Björn Jacke <bj@sernet.de> | 2009-05-26 22:41:45 +0200 |
commit | 93e16a08d46587a6eacaa05cd462ea316e9da8e4 (patch) | |
tree | a644a5f31357d744bc2269bb4628542a45512322 /source3/include | |
parent | 73af16c0e7e599ca7f93b9769a42ae4ce0ce7a3e (diff) | |
download | samba-93e16a08d46587a6eacaa05cd462ea316e9da8e4.tar.gz samba-93e16a08d46587a6eacaa05cd462ea316e9da8e4.tar.bz2 samba-93e16a08d46587a6eacaa05cd462ea316e9da8e4.zip |
s3: fix build on systems with struct stat member st_flags
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/includes.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source3/include/includes.h b/source3/include/includes.h index a2f6048c27..ba3866a03a 100644 --- a/source3/include/includes.h +++ b/source3/include/includes.h @@ -450,6 +450,9 @@ struct stat_ex { struct timespec st_ex_btime; /* birthtime */ blksize_t st_ex_blksize; blkcnt_t st_ex_blocks; +#ifdef HAVE_STAT_ST_FLAGS + uint32_t st_ex_flags; +#endif /* * Add space for VFS internal extensions. The initial user of this |