diff options
author | Jeremy Allison <jra@samba.org> | 1998-01-07 08:29:15 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 1998-01-07 08:29:15 +0000 |
commit | 6e2acebc778ee8507b1631968c78459e30a4163e (patch) | |
tree | 835dc6c2536ab8bf2b28c965b834f6c081348864 /source3/smbd | |
parent | c23ed625b22bfc765ba95cb7b8addf55625fea44 (diff) | |
download | samba-6e2acebc778ee8507b1631968c78459e30a4163e.tar.gz samba-6e2acebc778ee8507b1631968c78459e30a4163e.tar.bz2 samba-6e2acebc778ee8507b1631968c78459e30a4163e.zip |
Ensure that if we are in share mode security that the smb_uid
field is invalid.
Jeremy.
(This used to be commit a689ca1ce5c3ffdc753dce329f51a8ede0592f29)
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/server.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/smbd/server.c b/source3/smbd/server.c index 5eb360bbe7..93d2a9756d 100644 --- a/source3/smbd/server.c +++ b/source3/smbd/server.c @@ -4670,7 +4670,8 @@ static int switch_message(int type,char *inbuf,char *outbuf,int size,int bufsize { int cnum = SVAL(inbuf,smb_tid); int flags = smb_messages[match].flags; - uint16 session_tag = SVAL(inbuf,smb_uid); + /* In share mode security we must ignore the vuid. */ + uint16 session_tag = (lp_security() == SEC_SHARE) ? UID_FIELD_INVALID : SVAL(inbuf,smb_uid); /* does this protocol need to be run as root? */ if (!(flags & AS_USER)) |