summaryrefslogtreecommitdiffstats
path: root/source/modules
diff options
context:
space:
mode:
authorJames Peach <jpeach@samba.org>2007-06-11 20:56:17 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:23:15 -0500
commitb5be0c7403195d2bd503fb1512cb46e65587adc4 (patch)
tree4c49fc12f89a10da0031c64620693b7f839b6a58 /source/modules
parente6399f1aa1c98d2d6e700245bb95c84f7e173236 (diff)
downloadsamba-b5be0c7403195d2bd503fb1512cb46e65587adc4.tar.gz
samba-b5be0c7403195d2bd503fb1512cb46e65587adc4.tar.xz
samba-b5be0c7403195d2bd503fb1512cb46e65587adc4.zip
r23423: Use the correct structure types in the NT_ACL operations. It's not
clear to my why the catia module feels it's necessary to implement these operations, but at least they're now the right type.
Diffstat (limited to 'source/modules')
-rw-r--r--source/modules/vfs_catia.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/modules/vfs_catia.c b/source/modules/vfs_catia.c
index d9a5cbd0f09..a32bd59d5c7 100644
--- a/source/modules/vfs_catia.c
+++ b/source/modules/vfs_catia.c
@@ -232,7 +232,7 @@ static char *catia_realpath(vfs_handle_struct *handle,
static size_t catia_get_nt_acl(vfs_handle_struct *handle, files_struct *fsp,
const char *name, uint32 security_info,
- struct security_descriptor **ppdesc)
+ struct security_descriptor_info **ppdesc)
{
return SMB_VFS_NEXT_GET_NT_ACL(handle, fsp, name, security_info,
ppdesc);
@@ -240,7 +240,7 @@ static size_t catia_get_nt_acl(vfs_handle_struct *handle, files_struct *fsp,
static BOOL catia_set_nt_acl(vfs_handle_struct *handle, files_struct *fsp,
const char *name, uint32 security_info_sent,
- struct security_descriptor *psd)
+ struct security_descriptor_info *psd)
{
return SMB_VFS_NEXT_SET_NT_ACL(handle, fsp, name, security_info_sent,
psd);