diff options
author | Jeremy Allison <jra@samba.org> | 2010-03-12 13:56:51 -0800 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2010-03-12 13:56:51 -0800 |
commit | e80ceb1d7355c8c46a2ed90d5721cf367640f4e8 (patch) | |
tree | a1172af1868d93449ac25d68576193a872e0bb50 /source3/locking | |
parent | 31b0417f7def5af5392088eec8fe6e77074d3da9 (diff) | |
download | samba-e80ceb1d7355c8c46a2ed90d5721cf367640f4e8.tar.gz samba-e80ceb1d7355c8c46a2ed90d5721cf367640f4e8.tar.bz2 samba-e80ceb1d7355c8c46a2ed90d5721cf367640f4e8.zip |
Remove more uses of "extern struct current_user current_user;".
Use accessor functions to get to this value. Tidies up much of
the user context code. Volker, please look at the changes in smbd/uid.c
to familiarize yourself with these changes as I think they make the
logic in there cleaner.
Cause smbd/posix_acls.c code to look at current user context, not
stored context on the conn struct - allows correct use of these
function calls under a become_root()/unbecome_root() pair.
Jeremy.
Diffstat (limited to 'source3/locking')
-rw-r--r-- | source3/locking/locking.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/source3/locking/locking.c b/source3/locking/locking.c index 6f1bc8cf8a..e9826ba5bd 100644 --- a/source3/locking/locking.c +++ b/source3/locking/locking.c @@ -1441,16 +1441,6 @@ bool set_delete_on_close(files_struct *fsp, bool delete_on_close, const UNIX_USE return False; } - if (fsp->conn->admin_user) { - tok_copy = copy_unix_token(lck, tok); - if (tok_copy == NULL) { - TALLOC_FREE(lck); - return false; - } - tok_copy->uid = (uid_t)0; - tok = tok_copy; - } - set_delete_on_close_lck(lck, delete_on_close, tok); if (fsp->is_directory) { |