summaryrefslogtreecommitdiff
path: root/source4/libcli/raw/rawacl.c
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2008-01-05 15:36:33 -0600
committerStefan Metzmacher <metze@samba.org>2008-01-05 09:42:02 -0600
commit2c8c9a535500e40084c4810da1890df8d9415659 (patch)
tree4ddfde12662feb02646d1ab8bc6c8e57bcea19aa /source4/libcli/raw/rawacl.c
parenta5301d220439e096c996629146128423ee47a868 (diff)
downloadsamba-2c8c9a535500e40084c4810da1890df8d9415659.tar.gz
samba-2c8c9a535500e40084c4810da1890df8d9415659.tar.bz2
samba-2c8c9a535500e40084c4810da1890df8d9415659.zip
r26669: Janitorial: Remove uses of global_loadparm.
(This used to be commit 50c46160d997e0448f51ae09e0f3c79e8519fa41)
Diffstat (limited to 'source4/libcli/raw/rawacl.c')
-rw-r--r--source4/libcli/raw/rawacl.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/source4/libcli/raw/rawacl.c b/source4/libcli/raw/rawacl.c
index 9d2068f35f..847d133173 100644
--- a/source4/libcli/raw/rawacl.c
+++ b/source4/libcli/raw/rawacl.c
@@ -77,8 +77,7 @@ NTSTATUS smb_raw_query_secdesc_recv(struct smbcli_request *req,
nt.out.data.length = IVAL(nt.out.params.data, 0);
- ndr = ndr_pull_init_blob(&nt.out.data, mem_ctx,
- lp_iconv_convenience(global_loadparm));
+ ndr = ndr_pull_init_blob(&nt.out.data, mem_ctx, NULL);
if (!ndr) {
return NT_STATUS_INVALID_PARAMETER;
}
@@ -136,7 +135,7 @@ struct smbcli_request *smb_raw_set_secdesc_send(struct smbcli_tree *tree,
nt.in.params.data = params;
nt.in.params.length = 8;
- ndr = ndr_push_init_ctx(NULL, lp_iconv_convenience(global_loadparm));
+ ndr = ndr_push_init_ctx(NULL, NULL);
if (!ndr) return NULL;
ndr_err = ndr_push_security_descriptor(ndr, NDR_SCALARS|NDR_BUFFERS, io->set_secdesc.in.sd);