diff options
author | Günther Deschner <gd@samba.org> | 2011-03-30 15:14:05 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2011-03-30 16:00:02 +0200 |
commit | 53bdf43acab2f8808fb205a719ff6323543a6440 (patch) | |
tree | 4288b76066b99145d462b6ced67af845983c98c9 /source3 | |
parent | 33082d016ee27537af0514d5eebcdaf0360fa4f7 (diff) | |
download | samba-53bdf43acab2f8808fb205a719ff6323543a6440.tar.gz samba-53bdf43acab2f8808fb205a719ff6323543a6440.tar.bz2 samba-53bdf43acab2f8808fb205a719ff6323543a6440.zip |
s3-vfs acl modules: more non-linux build fixes.
Guenther
Autobuild-User: Günther Deschner <gd@samba.org>
Autobuild-Date: Wed Mar 30 16:00:02 CEST 2011 on sn-devel-104
Diffstat (limited to 'source3')
-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" |