From 5736f134003f426530040e732a6acc1c86b33f5f Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Wed, 25 Sep 2013 06:57:23 +0200 Subject: s4:libcli:smb2: add the smb2_capabilities to the smbcli_options and initialize them in lpcfg_smbcli_options() instead of in smb2_transport_init() as previously. This will allow us to control them from callers later. Signed-off-by: Michael Adam Reviewed-by: Stefan Metzmacher Reviewed-by: Jeremy Allison --- source4/param/loadparm.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source4/param/loadparm.c') diff --git a/source4/param/loadparm.c b/source4/param/loadparm.c index 900db7d40a..5f4f4181cc 100644 --- a/source4/param/loadparm.c +++ b/source4/param/loadparm.c @@ -44,6 +44,7 @@ void lpcfg_smbcli_options(struct loadparm_context *lp_ctx, options->unicode = lpcfg_unicode(lp_ctx); options->use_oplocks = true; options->use_level2_oplocks = true; + options->smb2_capabilities = SMB2_CAP_ALL; options->client_guid = GUID_random(); } -- cgit