diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-01-05 15:36:37 -0600 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2008-01-05 09:42:02 -0600 |
commit | 2da3464080e1a45f5c76231668a546ad7f10e790 (patch) | |
tree | be874a6f1b8eef3cdf0a485b27dfcc454a340707 /source4/libcli | |
parent | 2c8c9a535500e40084c4810da1890df8d9415659 (diff) | |
download | samba-2da3464080e1a45f5c76231668a546ad7f10e790.tar.gz samba-2da3464080e1a45f5c76231668a546ad7f10e790.tar.bz2 samba-2da3464080e1a45f5c76231668a546ad7f10e790.zip |
r26670: Janitorial: Remove global_loadparm uses.
(This used to be commit 13cc6ca1d3c2b5899bdd02c4c7306a92baa260f5)
Diffstat (limited to 'source4/libcli')
-rw-r--r-- | source4/libcli/smb_composite/fsinfo.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/libcli/smb_composite/fsinfo.c b/source4/libcli/smb_composite/fsinfo.c index 26b19e8759..e4dd4436ba 100644 --- a/source4/libcli/smb_composite/fsinfo.c +++ b/source4/libcli/smb_composite/fsinfo.c @@ -153,11 +153,11 @@ struct composite_context *smb_composite_fsinfo_send(struct smbcli_tree *tree, state->connect->in.fallback_to_anonymous = false; state->connect->in.workgroup = io->in.workgroup; - lp_smbcli_options(global_loadparm, &state->connect->in.options); + state->connect->in.options = tree->session->transport->options; c->state = COMPOSITE_STATE_IN_PROGRESS; state->stage = FSINFO_CONNECT; - c->event_ctx = talloc_reference(c, tree->session->transport->socket->event.ctx); + c->event_ctx = talloc_reference(c, tree->session->transport->socket->event.ctx); c->private_data = state; state->creq = smb_composite_connect_send(state->connect, state, |