diff options
author | Jeremy Allison <jra@samba.org> | 2009-08-06 15:47:05 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2009-08-06 15:47:05 -0700 |
commit | 890dfe003c91f8df737e5e2e4e440e1a9f416ae8 (patch) | |
tree | db71b9f101e3bec73c9a75bbffd3d3d05fbb51bb /source3/smbd | |
parent | 650445fc3cb8f61fdb6e570e46226fff101bb174 (diff) | |
download | samba-890dfe003c91f8df737e5e2e4e440e1a9f416ae8.tar.gz samba-890dfe003c91f8df737e5e2e4e440e1a9f416ae8.tar.bz2 samba-890dfe003c91f8df737e5e2e4e440e1a9f416ae8.zip |
Remove a const warning.
Jeremy.
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/posix_acls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/posix_acls.c b/source3/smbd/posix_acls.c index 0a3b0dff75..8c5393871f 100644 --- a/source3/smbd/posix_acls.c +++ b/source3/smbd/posix_acls.c @@ -4360,7 +4360,7 @@ static SMB_ACL_T create_posix_acl_from_wire(connection_struct *conn, uint16 num_ on the directory. ****************************************************************************/ -bool set_unix_posix_default_acl(connection_struct *conn, const char *fname, SMB_STRUCT_STAT *psbuf, +bool set_unix_posix_default_acl(connection_struct *conn, const char *fname, const SMB_STRUCT_STAT *psbuf, uint16 num_def_acls, const char *pdata) { SMB_ACL_T def_acl = NULL; |