diff options
author | Jeremy Allison <jra@samba.org> | 2010-03-15 10:33:09 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2010-03-15 14:48:54 -0700 |
commit | 4b85a0ea7fe036347b9fe5c725e55b043f75ccb4 (patch) | |
tree | 33c588f05e060adaf709cdbd42ee1bae86d59d32 /source3/include | |
parent | 83b9e12513984af8b372f5558043ed0f65d832fd (diff) | |
download | samba-4b85a0ea7fe036347b9fe5c725e55b043f75ccb4.tar.gz samba-4b85a0ea7fe036347b9fe5c725e55b043f75ccb4.tar.bz2 samba-4b85a0ea7fe036347b9fe5c725e55b043f75ccb4.zip |
Rever e80ceb1d7355c8c46a2ed90d5721cf367640f4e8 "Remove more uses of "extern struct current_user current_user;"."
As requested by Volker, split this into smaller commits.
Jeremy.
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 6e210de458..453f8e99df 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(connection_struct *conn, uid_t *puser, gid_t *pgrp, uint32 security_info_sent, const SEC_DESC *psd); +NTSTATUS unpack_nt_owners(int snum, 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); @@ -7117,11 +7117,6 @@ void become_root(void); void unbecome_root(void); bool become_user(connection_struct *conn, uint16 vuid); bool unbecome_user(void); -uid_t get_current_uid(connection_struct *conn); -gid_t get_current_gid(connection_struct *conn); -const UNIX_USER_TOKEN *get_current_utok(connection_struct *conn); -const NT_USER_TOKEN *get_current_nttok(connection_struct *conn); -uint16_t get_current_vuid(connection_struct *conn); /* The following definitions come from smbd/utmp.c */ |