diff options
author | Tim Potter <tpot@samba.org> | 2000-07-06 07:01:37 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2000-07-06 07:01:37 +0000 |
commit | 96446651af3f41c74de751f091740b06268a7a8c (patch) | |
tree | e5fb66bbcc84abdb226da7fa8c7af2ef00b259ac /source3/smbd | |
parent | 34abda02dd2bcc1cd271edc369e9f172b566efaf (diff) | |
download | samba-96446651af3f41c74de751f091740b06268a7a8c.tar.gz samba-96446651af3f41c74de751f091740b06268a7a8c.tar.bz2 samba-96446651af3f41c74de751f091740b06268a7a8c.zip |
Moved authenticated pipe user details into a current_user struct.
(This used to be commit 3c4a5f624bfa69eb81d998530d9227e158edd109)
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/uid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/uid.c b/source3/smbd/uid.c index 2078bb5a7d..172e872020 100644 --- a/source3/smbd/uid.c +++ b/source3/smbd/uid.c @@ -204,7 +204,7 @@ BOOL become_authenticated_pipe_user(pipes_struct *p) } set_sec_ctx(p->pipe_user.uid, p->pipe_user.gid, - p->pipe_user.n_groups, p->pipe_user.groups); + p->pipe_user.ngroups, p->pipe_user.groups); return True; } |