From: James Peach Date: Mon, 11 Jun 2007 20:56:17 +0000 (+0000) Subject: r23423: Use the correct structure types in the NT_ACL operations. It's not X-Git-Tag: samba-misc-tags/initial-v3-0-unstable~232 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b5be0c7403195d2bd503fb1512cb46e65587adc4;p=thirdparty%2Fsamba.git 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. --- 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);