summaryrefslogtreecommitdiff
path: root/source3/rpcclient
diff options
context:
space:
mode:
authorRalph Boehme <slow@samba.org>2019-08-23 18:43:02 +0200
committerRalph Boehme <slow@samba.org>2019-10-09 15:52:55 +0000
commitc9b6298249cd2f670e6953c9c3ef2e977f8bc565 (patch)
treeaddf0f85b561e4a5e41151a1efc540a276730bdc /source3/rpcclient
parent63cbeaf0e7472a7321f27327091217c909864100 (diff)
downloadsamba-c9b6298249cd2f670e6953c9c3ef2e977f8bc565.tar.gz
mdssvc.idl: pass policy_handle as pointer
No change in behaviour, this just changes all functions to take the policy_handle argument as pointer instead of passing it by value. This is how all other IDLs pass it. Signed-off-by: Ralph Boehme <slow@samba.org> Reviewed-by: Noel Power <noel.power@suse.com> Autobuild-User(master): Ralph Böhme <slow@samba.org> Autobuild-Date(master): Wed Oct 9 15:52:55 UTC 2019 on sn-devel-184
Diffstat (limited to 'source3/rpcclient')
-rw-r--r--source3/rpcclient/cmd_spotlight.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/rpcclient/cmd_spotlight.c b/source3/rpcclient/cmd_spotlight.c
index f8bf75edde4..5bc5eb10888 100644
--- a/source3/rpcclient/cmd_spotlight.c
+++ b/source3/rpcclient/cmd_spotlight.c
@@ -70,7 +70,7 @@ static NTSTATUS cmd_mdssvc_fetch_properties(
}
status = dcerpc_mdssvc_unknown1(b, mem_ctx,
- share_handle,
+ &share_handle,
0,
device_id,
unkn1,
@@ -160,7 +160,7 @@ static NTSTATUS cmd_mdssvc_fetch_properties(
request_blob.size = len;
status = dcerpc_mdssvc_cmd(b, mem_ctx,
- share_handle,
+ &share_handle,
0,
device_id,
23,
@@ -248,7 +248,7 @@ static NTSTATUS cmd_mdssvc_fetch_attributes(
}
status = dcerpc_mdssvc_unknown1(b, mem_ctx,
- share_handle,
+ &share_handle,
0,
device_id,
unkn1,
@@ -386,7 +386,7 @@ static NTSTATUS cmd_mdssvc_fetch_attributes(
request_blob.size = len;
status = dcerpc_mdssvc_cmd(b, mem_ctx,
- share_handle,
+ &share_handle,
0,
device_id,
23,