diff options
author | Stefan Metzmacher <metze@samba.org> | 2012-11-28 11:21:51 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2012-11-28 12:21:11 +0100 |
commit | d5987048347beefa720f902d97b621e6cb719fdf (patch) | |
tree | 54d8ccc80fea140909069e933029fe9b469c174b /source3/modules | |
parent | 00e2d83fa4f1e9a336c2030a3f07066caee85083 (diff) | |
download | samba-d5987048347beefa720f902d97b621e6cb719fdf.tar.gz samba-d5987048347beefa720f902d97b621e6cb719fdf.tar.bz2 samba-d5987048347beefa720f902d97b621e6cb719fdf.zip |
s3:vfs_aixacl2: make use of vfs_aixacl_util.h
This should fix the build.
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'source3/modules')
-rw-r--r-- | source3/modules/vfs_aixacl2.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/source3/modules/vfs_aixacl2.c b/source3/modules/vfs_aixacl2.c index 327b06d66d..65625d1853 100644 --- a/source3/modules/vfs_aixacl2.c +++ b/source3/modules/vfs_aixacl2.c @@ -21,15 +21,13 @@ #include "system/filesys.h" #include "smbd/smbd.h" #include "nfs4_acls.h" +#include "vfs_aixacl_util.h" #undef DBGC_CLASS #define DBGC_CLASS DBGC_VFS #define AIXACL2_MODULE_NAME "aixacl2" -extern SMB_ACL_T aixacl_to_smbacl( struct acl *file_acl); -extern struct acl *aixacl_smb_to_aixacl(SMB_ACL_TYPE_T acltype, SMB_ACL_T theacl); - typedef union aixjfs2_acl_t { nfs4_acl_int_t jfs2_acl[1]; aixc_acl_t aixc_acl[1]; |