diff options
author | Jeremy Allison <jra@samba.org> | 2005-10-06 00:21:02 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:04:51 -0500 |
commit | 5b455c1755e0b23b96413bee7886c837b476620a (patch) | |
tree | 14a7cebffeef3642e9eae4237027983b4c01d5bd /source3 | |
parent | 7fe605c97e8f90beedd891429752ff9fd902b1c8 (diff) | |
download | samba-5b455c1755e0b23b96413bee7886c837b476620a.tar.gz samba-5b455c1755e0b23b96413bee7886c837b476620a.tar.xz samba-5b455c1755e0b23b96413bee7886c837b476620a.zip |
r10749: Remove one more Samba4 smbtorture RAW-OPEN difference from W2K3.
Jeremy.
(This used to be commit 0e8cf8eef59e38ba9a79f6c688abe9f1ac3bf64d)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/smbd/reply.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index ba22a56cfb4..4d876d42891 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -1353,7 +1353,7 @@ int reply_open(connection_struct *conn, char *inbuf,char *outbuf, int dum_size, put_dos_date3(outbuf,smb_vwv2,mtime); } SIVAL(outbuf,smb_vwv4,(uint32)size); - SSVAL(outbuf,smb_vwv6,GET_OPENX_MODE(deny_mode)); + SSVAL(outbuf,smb_vwv6,deny_mode); if (oplock_request && lp_fake_oplocks(SNUM(conn))) { SCVAL(outbuf,smb_flg,CVAL(outbuf,smb_flg)|CORE_OPLOCK_GRANTED); |