Ignore:
Timestamp:
Nov 27, 2012, 4:43:17 PM (13 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: updated trunk to 3.6.0

Location:
trunk/server
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/server

  • trunk/server/source3/modules/vfs_aixacl2.c

    r429 r745  
    1919
    2020#include "includes.h"
     21#include "smbd/smbd.h"
    2122#include "nfs4_acls.h"
    2223
     
    156157static NTSTATUS aixjfs2_fget_nt_acl(vfs_handle_struct *handle,
    157158        files_struct *fsp, uint32 security_info,
    158         SEC_DESC **ppdesc)
     159        struct security_descriptor **ppdesc)
    159160{
    160161        SMB4ACL_T *pacl = NULL;
     
    178179static NTSTATUS aixjfs2_get_nt_acl(vfs_handle_struct *handle,
    179180        const char *name,
    180         uint32 security_info, SEC_DESC **ppdesc)
     181        uint32 security_info, struct security_descriptor **ppdesc)
    181182{
    182183        SMB4ACL_T *pacl = NULL;
     
    371372}
    372373
    373 static NTSTATUS aixjfs2_set_nt_acl_common(files_struct *fsp, uint32 security_info_sent, const SEC_DESC *psd)
     374static NTSTATUS aixjfs2_set_nt_acl_common(files_struct *fsp, uint32 security_info_sent, const struct security_descriptor *psd)
    374375{
    375376        acl_type_t      acl_type_info;
     
    395396}
    396397
    397 NTSTATUS aixjfs2_fset_nt_acl(vfs_handle_struct *handle, files_struct *fsp, uint32 security_info_sent, const SEC_DESC *psd)
     398NTSTATUS aixjfs2_fset_nt_acl(vfs_handle_struct *handle, files_struct *fsp, uint32 security_info_sent, const struct security_descriptor *psd)
    398399{
    399400        return aixjfs2_set_nt_acl_common(fsp, security_info_sent, psd);
Note: See TracChangeset for help on using the changeset viewer.