mirror of
https://github.com/samba-team/samba.git
synced 2025-01-10 01:18:15 +03:00
s3:smbd: make psbuf arg to make_default_acl_posix() const
Bug: https://bugzilla.samba.org/show_bug.cgi?id=13175 Signed-off-by: Ralph Boehme <slow@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
This commit is contained in:
parent
a52d0c3a14
commit
ec2a408313
@ -4779,7 +4779,7 @@ int posix_sys_acl_blob_get_fd(vfs_handle_struct *handle,
|
||||
|
||||
static NTSTATUS make_default_acl_posix(TALLOC_CTX *ctx,
|
||||
const char *name,
|
||||
SMB_STRUCT_STAT *psbuf,
|
||||
const SMB_STRUCT_STAT *psbuf,
|
||||
struct security_descriptor **ppdesc)
|
||||
{
|
||||
struct dom_sid owner_sid, group_sid;
|
||||
@ -4886,7 +4886,7 @@ static NTSTATUS make_default_acl_posix(TALLOC_CTX *ctx,
|
||||
|
||||
static NTSTATUS make_default_acl_windows(TALLOC_CTX *ctx,
|
||||
const char *name,
|
||||
SMB_STRUCT_STAT *psbuf,
|
||||
const SMB_STRUCT_STAT *psbuf,
|
||||
struct security_descriptor **ppdesc)
|
||||
{
|
||||
struct dom_sid owner_sid, group_sid;
|
||||
@ -4958,7 +4958,7 @@ static NTSTATUS make_default_acl_windows(TALLOC_CTX *ctx,
|
||||
|
||||
static NTSTATUS make_default_acl_everyone(TALLOC_CTX *ctx,
|
||||
const char *name,
|
||||
SMB_STRUCT_STAT *psbuf,
|
||||
const SMB_STRUCT_STAT *psbuf,
|
||||
struct security_descriptor **ppdesc)
|
||||
{
|
||||
struct dom_sid owner_sid, group_sid;
|
||||
@ -5022,7 +5022,7 @@ NTSTATUS make_default_filesystem_acl(
|
||||
TALLOC_CTX *ctx,
|
||||
enum default_acl_style acl_style,
|
||||
const char *name,
|
||||
SMB_STRUCT_STAT *psbuf,
|
||||
const SMB_STRUCT_STAT *psbuf,
|
||||
struct security_descriptor **ppdesc)
|
||||
{
|
||||
NTSTATUS status;
|
||||
|
@ -819,7 +819,7 @@ NTSTATUS make_default_filesystem_acl(
|
||||
TALLOC_CTX *ctx,
|
||||
enum default_acl_style acl_style,
|
||||
const char *name,
|
||||
SMB_STRUCT_STAT *psbuf,
|
||||
const SMB_STRUCT_STAT *psbuf,
|
||||
struct security_descriptor **ppdesc);
|
||||
|
||||
/* The following definitions come from smbd/process.c */
|
||||
|
Loading…
Reference in New Issue
Block a user