summaryrefslogtreecommitdiff
path: root/source3/include
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2009-07-27 12:09:40 -0700
committerJeremy Allison <jra@samba.org>2009-07-27 12:09:40 -0700
commit9297b975f58a6c8a8609e05d0bed7b4846a2be32 (patch)
tree129ac7e913e6b9245c626f6b2b97fb57b21333f6 /source3/include
parent67d9130c134e885c17242596aacd2f265737d805 (diff)
downloadsamba-9297b975f58a6c8a8609e05d0bed7b4846a2be32.tar.gz
samba-9297b975f58a6c8a8609e05d0bed7b4846a2be32.tar.bz2
samba-9297b975f58a6c8a8609e05d0bed7b4846a2be32.zip
Fix the build breakage by #including modules/vfs_acl_common.c
into acl_tdb and acl_xattr. Duplicates the code size, but keeps the code in common so I don't have to do bug fixes in two places (which is what I really cared about). Jeremy.
Diffstat (limited to 'source3/include')
-rw-r--r--source3/include/proto.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h
index 3e9f5e8ae7..f7fedc7e52 100644
--- a/source3/include/proto.h
+++ b/source3/include/proto.h
@@ -7288,31 +7288,4 @@ uint32_t ds_uf2atype(uint32_t uf);
uint32_t ds_gtype2atype(uint32_t gtype);
enum lsa_SidType ds_atype_map(uint32_t atype);
-/* The following definitions come from modules/vfs_acl_xattr.c */
-NTSTATUS get_acl_blob(TALLOC_CTX *ctx,
- vfs_handle_struct *handle,
- files_struct *fsp,
- const char *name,
- DATA_BLOB *pblob);
-NTSTATUS store_acl_blob_fsp(vfs_handle_struct *handle,
- files_struct *fsp,
- DATA_BLOB *pblob);
-NTSTATUS store_acl_blob_pathname(vfs_handle_struct *handle,
- const char *fname,
- DATA_BLOB *pblob);
-
-/* The following definitions come from modules/vfs_acl_common.c */
-int open_acl_common(vfs_handle_struct *handle,
- struct smb_filename *smb_fname,
- files_struct *fsp,
- int flags,
- mode_t mode);
-int mkdir_acl_common(vfs_handle_struct *handle, const char *path, mode_t mode);
-NTSTATUS fget_nt_acl_common(vfs_handle_struct *handle, files_struct *fsp,
- uint32_t security_info, struct security_descriptor **ppdesc);
-NTSTATUS get_nt_acl_common(vfs_handle_struct *handle,
- const char *name, uint32_t security_info, struct security_descriptor **ppdesc);
-NTSTATUS fset_nt_acl_common(vfs_handle_struct *handle, files_struct *fsp,
- uint32_t security_info_sent, const struct security_descriptor *psd);
-
#endif /* _PROTO_H_ */