From 97b76364e7c8103ee6dd6e41d85d3932e46eafdc Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sun, 3 Oct 2010 10:46:22 +0200 Subject: s3: Attempt to fix a ton of warnings on the build farm --- source3/include/fake_file.h | 10 ++++++++++ source3/include/proto.h | 12 ------------ 2 files changed, 10 insertions(+), 12 deletions(-) (limited to 'source3/include') diff --git a/source3/include/fake_file.h b/source3/include/fake_file.h index 6b34005625..0581fbcea5 100644 --- a/source3/include/fake_file.h +++ b/source3/include/fake_file.h @@ -38,4 +38,14 @@ struct fake_file_handle { void *private_data; }; +enum FAKE_FILE_TYPE is_fake_file_path(const char *path); +enum FAKE_FILE_TYPE is_fake_file(const struct smb_filename *smb_fname); +NTSTATUS open_fake_file(struct smb_request *req, connection_struct *conn, + uint16_t current_vuid, + enum FAKE_FILE_TYPE fake_file_type, + const struct smb_filename *smb_fname, + uint32 access_mask, + files_struct **result); +NTSTATUS close_fake_file(struct smb_request *req, files_struct *fsp); + #endif /* _FAKE_FILE_H */ diff --git a/source3/include/proto.h b/source3/include/proto.h index 7fb0a3d088..71a7baf667 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -4649,18 +4649,6 @@ void reply_both_error(struct smb_request *req, uint8 eclass, uint32 ecode, NTSTATUS status, int line, const char *file); void reply_openerror(struct smb_request *req, NTSTATUS status); -/* The following definitions come from smbd/fake_file.c */ - -enum FAKE_FILE_TYPE is_fake_file_path(const char *path); -enum FAKE_FILE_TYPE is_fake_file(const struct smb_filename *smb_fname); -NTSTATUS open_fake_file(struct smb_request *req, connection_struct *conn, - uint16_t current_vuid, - enum FAKE_FILE_TYPE fake_file_type, - const struct smb_filename *smb_fname, - uint32 access_mask, - files_struct **result); -NTSTATUS close_fake_file(struct smb_request *req, files_struct *fsp); - /* The following definitions come from smbd/file_access.c */ bool can_access_file_acl(struct connection_struct *conn, -- cgit