diff options
author | Jeremy Allison <jra@samba.org> | 2010-03-15 11:04:51 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2010-03-15 14:49:11 -0700 |
commit | 6b2358e15eadf2b137b62669a813eded21aebbc7 (patch) | |
tree | cd165358c1b57d0de9ed52b84b03fb5e07263c43 /source3/include | |
parent | 5d6610a21580a1d588465ec9f144f5a6daad57cd (diff) | |
download | samba-6b2358e15eadf2b137b62669a813eded21aebbc7.tar.gz samba-6b2358e15eadf2b137b62669a813eded21aebbc7.tar.bz2 samba-6b2358e15eadf2b137b62669a813eded21aebbc7.zip |
Pass "connection_struct *conn" into functions that currently use "current_user.XXX"
Will allow me to replace them with accessor functions.
Jeremy.
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 54500009c4..6e210de458 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -6753,7 +6753,7 @@ uint32_t map_canon_ace_perms(int snum, enum security_ace_type *pacl_type, mode_t perms, bool directory_ace); -NTSTATUS unpack_nt_owners(int snum, uid_t *puser, gid_t *pgrp, uint32 security_info_sent, const SEC_DESC *psd); +NTSTATUS unpack_nt_owners(connection_struct *conn, uid_t *puser, gid_t *pgrp, uint32 security_info_sent, const SEC_DESC *psd); SMB_ACL_T free_empty_sys_acl(connection_struct *conn, SMB_ACL_T the_acl); NTSTATUS posix_fget_nt_acl(struct files_struct *fsp, uint32_t security_info, SEC_DESC **ppdesc); |