diff options
-rw-r--r-- | source3/modules/vfs_afsacl.c | 1 | ||||
-rw-r--r-- | source3/modules/vfs_aixacl.c | 1 | ||||
-rw-r--r-- | source3/modules/vfs_hpuxacl.c | 1 | ||||
-rw-r--r-- | source3/modules/vfs_irixacl.c | 1 | ||||
-rw-r--r-- | source3/modules/vfs_posixacl.c | 2 | ||||
-rw-r--r-- | source3/modules/vfs_tru64acl.c | 1 | ||||
-rw-r--r-- | source3/modules/vfs_zfsacl.c | 1 |
7 files changed, 7 insertions, 1 deletions
diff --git a/source3/modules/vfs_afsacl.c b/source3/modules/vfs_afsacl.c index 9f085ce317..06ce6f5f8d 100644 --- a/source3/modules/vfs_afsacl.c +++ b/source3/modules/vfs_afsacl.c @@ -18,6 +18,7 @@ */ #include "includes.h" +#include "system/filesys.h" #include "smbd/smbd.h" #undef DBGC_CLASS diff --git a/source3/modules/vfs_aixacl.c b/source3/modules/vfs_aixacl.c index 30a65c87bd..c09bdb5bb8 100644 --- a/source3/modules/vfs_aixacl.c +++ b/source3/modules/vfs_aixacl.c @@ -18,6 +18,7 @@ */ #include "includes.h" +#include "system/filesys.h" #include "smbd/smbd.h" extern SMB_ACL_T aixacl_to_smbacl( struct acl *file_acl); diff --git a/source3/modules/vfs_hpuxacl.c b/source3/modules/vfs_hpuxacl.c index 1df3fbbf5a..bd1eee6ba4 100644 --- a/source3/modules/vfs_hpuxacl.c +++ b/source3/modules/vfs_hpuxacl.c @@ -47,6 +47,7 @@ #include "includes.h" +#include "system/filesys.h" #include "smbd/smbd.h" /* diff --git a/source3/modules/vfs_irixacl.c b/source3/modules/vfs_irixacl.c index cceddb2f8d..26f13cf6f0 100644 --- a/source3/modules/vfs_irixacl.c +++ b/source3/modules/vfs_irixacl.c @@ -18,6 +18,7 @@ */ #include "includes.h" +#include "system/filesys.h" #include "smbd/smbd.h" /* prototypes for private functions first - for clarity */ diff --git a/source3/modules/vfs_posixacl.c b/source3/modules/vfs_posixacl.c index 9890110d98..539ced2b74 100644 --- a/source3/modules/vfs_posixacl.c +++ b/source3/modules/vfs_posixacl.c @@ -18,8 +18,8 @@ */ #include "includes.h" -#include "smbd/smbd.h" #include "system/filesys.h" +#include "smbd/smbd.h" /* prototypes for static functions first - for clarity */ diff --git a/source3/modules/vfs_tru64acl.c b/source3/modules/vfs_tru64acl.c index de3c415863..f7457af627 100644 --- a/source3/modules/vfs_tru64acl.c +++ b/source3/modules/vfs_tru64acl.c @@ -18,6 +18,7 @@ */ #include "includes.h" +#include "system/filesys.h" #include "smbd/smbd.h" /* prototypes for private functions first - for clarity */ diff --git a/source3/modules/vfs_zfsacl.c b/source3/modules/vfs_zfsacl.c index 2dbc2b92c4..286720a354 100644 --- a/source3/modules/vfs_zfsacl.c +++ b/source3/modules/vfs_zfsacl.c @@ -23,6 +23,7 @@ */ #include "includes.h" +#include "system/filesys.h" #include "smbd/smbd.h" #include "nfs4_acls.h" |