summaryrefslogtreecommitdiff
path: root/source4/torture/rpc/autoidl.c
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2009-04-17 11:46:57 +0200
committerStefan Metzmacher <metze@samba.org>2009-04-20 18:15:00 +0200
commitd0e68032187d7167d535d710f01a1c84ac006f3c (patch)
tree4e31c527fbaaf549db72ee9d89c7f8b1bfebf18a /source4/torture/rpc/autoidl.c
parentf3c9d124bb302ded239a835a6173fbfe262a0bab (diff)
downloadsamba-d0e68032187d7167d535d710f01a1c84ac006f3c.tar.gz
samba-d0e68032187d7167d535d710f01a1c84ac006f3c.tar.bz2
samba-d0e68032187d7167d535d710f01a1c84ac006f3c.zip
s4:librpc/rpc: remove async argument from the sync dcerpc_request() function
metze
Diffstat (limited to 'source4/torture/rpc/autoidl.c')
-rw-r--r--source4/torture/rpc/autoidl.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source4/torture/rpc/autoidl.c b/source4/torture/rpc/autoidl.c
index 5ae0201855..6345712133 100644
--- a/source4/torture/rpc/autoidl.c
+++ b/source4/torture/rpc/autoidl.c
@@ -131,7 +131,7 @@ static void try_expand(struct torture_context *tctx, const struct ndr_interface_
memcpy(stub_in.data, base_in->data, insert_ofs);
memcpy(stub_in.data+insert_ofs+n, base_in->data+insert_ofs, base_in->length-insert_ofs);
- status = dcerpc_request(p, NULL, opnum, false, tctx, &stub_in, &stub_out);
+ status = dcerpc_request(p, NULL, opnum, tctx, &stub_in, &stub_out);
if (!NT_STATUS_EQUAL(status, NT_STATUS_NET_WRITE_FAULT)) {
print_depth(depth);
@@ -172,7 +172,7 @@ static void test_ptr_scan(struct torture_context *tctx, const struct ndr_interfa
/* work out which elements are pointers */
for (ofs=min_ofs;ofs<=max_ofs-4;ofs+=4) {
SIVAL(stub_in.data, ofs, 1);
- status = dcerpc_request(p, NULL, opnum, false, tctx, &stub_in, &stub_out);
+ status = dcerpc_request(p, NULL, opnum, tctx, &stub_in, &stub_out);
if (NT_STATUS_EQUAL(status, NT_STATUS_NET_WRITE_FAULT)) {
print_depth(depth);
@@ -214,7 +214,7 @@ static void test_scan_call(struct torture_context *tctx, const struct ndr_interf
data_blob_clear(&stub_in);
- status = dcerpc_request(p, NULL, opnum, false, tctx, &stub_in, &stub_out);
+ status = dcerpc_request(p, NULL, opnum, tctx, &stub_in, &stub_out);
if (NT_STATUS_IS_OK(status)) {
printf("opnum %d min_input %d - output %d\n",
@@ -227,7 +227,7 @@ static void test_scan_call(struct torture_context *tctx, const struct ndr_interf
fill_blob_handle(&stub_in, tctx, &handle);
- status = dcerpc_request(p, NULL, opnum, false, tctx, &stub_in, &stub_out);
+ status = dcerpc_request(p, NULL, opnum, tctx, &stub_in, &stub_out);
if (NT_STATUS_IS_OK(status)) {
printf("opnum %d min_input %d - output %d (with handle)\n",