From dcc282590b34537fc1ead61c3300172528273b44 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Thu, 3 Jan 2008 17:22:12 -0600 Subject: r26654: libcli/smb_composite: Rather than specifying each of the gazillion options for SMB individually, just specify the smbcli_options struct. (This used to be commit 8a97886e24a4b969aa91409c06f423b71a45f6eb) --- source4/librpc/rpc/dcerpc_connect.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'source4/librpc/rpc') diff --git a/source4/librpc/rpc/dcerpc_connect.c b/source4/librpc/rpc/dcerpc_connect.c index 9bd503c625..361be4adcd 100644 --- a/source4/librpc/rpc/dcerpc_connect.c +++ b/source4/librpc/rpc/dcerpc_connect.c @@ -119,13 +119,7 @@ static struct composite_context *dcerpc_pipe_connect_ncacn_np_smb_send(TALLOC_CT conn->in.service_type = NULL; conn->in.workgroup = lp_workgroup(lp_ctx); - conn->in.max_xmit = lp_max_xmit(lp_ctx); - conn->in.max_mux = lp_maxmux(lp_ctx); - conn->in.ntstatus_support = lp_nt_status_support(lp_ctx); - conn->in.max_protocol = lp_cli_maxprotocol(lp_ctx); - conn->in.unicode = lp_unicode(lp_ctx); - conn->in.use_spnego = lp_use_spnego(lp_ctx) && lp_nt_status_support(lp_ctx); - conn->in.signing = lp_client_signing(lp_ctx); + lp_smbcli_options(lp_ctx, &conn->in.options); /* * provide proper credentials - user supplied, but allow a -- cgit