summaryrefslogtreecommitdiff
path: root/source4/param
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2008-03-06 15:11:16 +0100
committerStefan Metzmacher <metze@samba.org>2008-03-06 16:31:25 +0100
commit3cbe47b2aef427f7f1fe8f4aa2496fbbe31a3ade (patch)
tree74a54f9d74298c8f6e025e186933805fae1ffbdf /source4/param
parentc24329dc0710df7520e77d67e5d9bc43f59fd24f (diff)
downloadsamba-3cbe47b2aef427f7f1fe8f4aa2496fbbe31a3ade.tar.gz
samba-3cbe47b2aef427f7f1fe8f4aa2496fbbe31a3ade.tar.bz2
samba-3cbe47b2aef427f7f1fe8f4aa2496fbbe31a3ade.zip
libcli/raw: make it possible to not send CAP_LEVEL_II_OPLOCKS
But the keep the default to always send it when the server supports it too. metze (This used to be commit 33caaef2e46557525a8ffb79d6dd0db46a079529)
Diffstat (limited to 'source4/param')
-rw-r--r--source4/param/loadparm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/param/loadparm.c b/source4/param/loadparm.c
index d94ab92ac9..65ce7595fc 100644
--- a/source4/param/loadparm.c
+++ b/source4/param/loadparm.c
@@ -2614,6 +2614,6 @@ void lp_smbcli_options(struct loadparm_context *lp_ctx,
options->ntstatus_support = lp_nt_status_support(lp_ctx);
options->max_protocol = lp_cli_maxprotocol(lp_ctx);
options->unicode = lp_unicode(lp_ctx);
- options->use_oplocks = false;
- options->use_level2_oplocks = false;
+ options->use_oplocks = true;
+ options->use_level2_oplocks = true;
}