diff options
author | Jeremy Allison <jra@samba.org> | 2001-07-25 18:07:36 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2001-07-25 18:07:36 +0000 |
commit | e662983fbe2068c977821f6563900d5a2b0a9323 (patch) | |
tree | 3fdcab9253f451b38754c2a6072e0b74646a0810 /source3/smbd | |
parent | 1d07607b39c0d3ff345c10893b4e8b1a6c7dabb4 (diff) | |
download | samba-e662983fbe2068c977821f6563900d5a2b0a9323.tar.gz samba-e662983fbe2068c977821f6563900d5a2b0a9323.tar.xz samba-e662983fbe2068c977821f6563900d5a2b0a9323.zip |
Excellent patch from Anselm Kruis <A.Kruis@science-computing.de> to fix
problem with wrong token being used in current_user.
Jeremy.
(This used to be commit 2c7d2a1d533052d3556715439fcd66c5233d3137)
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/sec_ctx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/sec_ctx.c b/source3/smbd/sec_ctx.c index 9ca63a0f957..e0e392decc7 100644 --- a/source3/smbd/sec_ctx.c +++ b/source3/smbd/sec_ctx.c @@ -356,7 +356,7 @@ void set_sec_ctx(uid_t uid, gid_t gid, int ngroups, gid_t *groups, NT_USER_TOKEN current_user.gid = gid; current_user.ngroups = ngroups; current_user.groups = groups; - current_user.nt_user_token = token; + current_user.nt_user_token = ctx_p->token; } /**************************************************************************** |