r23423: Use the correct structure types in the NT_ACL operations. It's not
authorJames Peach <jpeach@samba.org>
Mon, 11 Jun 2007 20:56:17 +0000 (20:56 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 17:23:15 +0000 (12:23 -0500)
clear to my why the catia module feels it's necessary to implement
these operations, but at least they're now the right type.
(This used to be commit b5be0c7403195d2bd503fb1512cb46e65587adc4)

source3/modules/vfs_catia.c

index d9a5cbd0f09c3b63a2895650d8bc37c30ef8b919..a32bd59d5c7f7cd5323f63dde19984c66aa700f2 100644 (file)
@@ -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);