From 93e16a08d46587a6eacaa05cd462ea316e9da8e4 Mon Sep 17 00:00:00 2001 From: Björn Jacke Date: Tue, 26 May 2009 22:37:17 +0200 Subject: s3: fix build on systems with struct stat member st_flags --- source3/include/includes.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source3/include/includes.h') 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 -- cgit