From fc2a3b66dbbcc2f5779e1f92d4cb45a77fe8c6e6 Mon Sep 17 00:00:00 2001 From: Tim Prouty Date: Fri, 5 Jun 2009 16:13:58 -0700 Subject: s3: Remove unused stat structs being passed to SMB_VFS_CREATE_FILE --- source3/smbd/open.c | 5 +---- source3/smbd/posix_acls.c | 5 +---- 2 files changed, 2 insertions(+), 8 deletions(-) (limited to 'source3') diff --git a/source3/smbd/open.c b/source3/smbd/open.c index fdfa99953f..65a1ded1b8 100644 --- a/source3/smbd/open.c +++ b/source3/smbd/open.c @@ -2601,11 +2601,8 @@ static NTSTATUS open_directory(connection_struct *conn, NTSTATUS create_directory(connection_struct *conn, struct smb_request *req, const char *directory) { NTSTATUS status; - SMB_STRUCT_STAT sbuf; files_struct *fsp; - SET_STAT_INVALID(sbuf); - status = SMB_VFS_CREATE_FILE( conn, /* conn */ req, /* req */ @@ -2623,7 +2620,7 @@ NTSTATUS create_directory(connection_struct *conn, struct smb_request *req, cons NULL, /* ea_list */ &fsp, /* result */ NULL, /* pinfo */ - &sbuf); /* psbuf */ + NULL); /* psbuf */ if (NT_STATUS_IS_OK(status)) { close_file(req, fsp, NORMAL_CLOSE); diff --git a/source3/smbd/posix_acls.c b/source3/smbd/posix_acls.c index 08b1c8c41a..1029b764b5 100644 --- a/source3/smbd/posix_acls.c +++ b/source3/smbd/posix_acls.c @@ -3465,15 +3465,12 @@ NTSTATUS append_parent_acl(files_struct *fsp, char *parent_name = NULL; SEC_ACE *new_ace = NULL; unsigned int num_aces = pcsd->dacl->num_aces; - SMB_STRUCT_STAT sbuf; NTSTATUS status; int info; unsigned int i, j; SEC_DESC *psd = dup_sec_desc(talloc_tos(), pcsd); bool is_dacl_protected = (pcsd->type & SEC_DESC_DACL_PROTECTED); - ZERO_STRUCT(sbuf); - if (psd == NULL) { return NT_STATUS_NO_MEMORY; } @@ -3499,7 +3496,7 @@ NTSTATUS append_parent_acl(files_struct *fsp, NULL, /* ea_list */ &parent_fsp, /* result */ &info, /* pinfo */ - &sbuf); /* psbuf */ + NULL); /* psbuf */ if (!NT_STATUS_IS_OK(status)) { return status; -- cgit