From b5be0c7403195d2bd503fb1512cb46e65587adc4 Mon Sep 17 00:00:00 2001 From: James Peach Date: Mon, 11 Jun 2007 20:56:17 +0000 Subject: [PATCH] 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. --- source/modules/vfs_catia.c | 4 ++-- 1 file 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); -- 2.47.3