summaryrefslogtreecommitdiffstats
path: root/source/smbd/negprot.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2000-11-16 00:59:18 +0000
committerJeremy Allison <jra@samba.org>2000-11-16 00:59:18 +0000
commit213cd0b5192307cd4b0026cae94b2f52fb1b0c02 (patch)
treeb23420f37b2748b7a05f74fc33717f4cea9dcc4c /source/smbd/negprot.c
parentb2b59b93ff1c5bdc43b099e2db1ee86fe8514152 (diff)
downloadsamba-213cd0b5192307cd4b0026cae94b2f52fb1b0c02.tar.gz
samba-213cd0b5192307cd4b0026cae94b2f52fb1b0c02.tar.xz
samba-213cd0b5192307cd4b0026cae94b2f52fb1b0c02.zip
Ok - fixed a bug in our levelII oplock code. We need to break a level II on
a byte range lock (write lock only, but Win2k breaks on read lock also so I do the same) - if you think about why, this is obvious. Also fixed our client code to do level II oplocks, if requested, and fixed the code where we would assume the client wanted level II if it advertised itself as being level II capable - it may not want that. Jeremy.
Diffstat (limited to 'source/smbd/negprot.c')
-rw-r--r--source/smbd/negprot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbd/negprot.c b/source/smbd/negprot.c
index 1029c8db620..41e95b816df 100644
--- a/source/smbd/negprot.c
+++ b/source/smbd/negprot.c
@@ -160,7 +160,7 @@ reply for the nt protocol
static int reply_nt1(char *outbuf)
{
/* dual names + lock_and_read + nt SMBs + remote API calls */
- int capabilities = CAP_NT_FIND|CAP_LOCK_AND_READ|
+ int capabilities = CAP_NT_FIND|CAP_LOCK_AND_READ|CAP_LEVEL_II_OPLOCKS|
(lp_nt_smb_support() ? CAP_NT_SMBS | CAP_RPC_REMOTE_APIS : 0) |
(SMB_OFF_T_BITS == 64 ? CAP_LARGE_FILES : 0);