diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-09-02 12:54:48 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:58:30 -0500 |
commit | 55b38541a00f57106a387e34b045d0f20e9efb87 (patch) | |
tree | a890161bde7a54c2477987d40eb7b5a2ebf207c8 /source4/torture | |
parent | eaab3ed2d25fbd9beb2675eb8a45fcb1821fc520 (diff) | |
download | samba-55b38541a00f57106a387e34b045d0f20e9efb87.tar.gz samba-55b38541a00f57106a387e34b045d0f20e9efb87.tar.bz2 samba-55b38541a00f57106a387e34b045d0f20e9efb87.zip |
r2186: setting [ref] output pointers in dcerpc calls is pointless. Removed it
for test_LookupPrivDisplayName
(This used to be commit 2d8f4005926e15dcb56a6501091a56475a99712d)
Diffstat (limited to 'source4/torture')
-rw-r--r-- | source4/torture/rpc/lsa.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/source4/torture/rpc/lsa.c b/source4/torture/rpc/lsa.c index 5eaabce3cd..5a306fef4d 100644 --- a/source4/torture/rpc/lsa.c +++ b/source4/torture/rpc/lsa.c @@ -641,18 +641,14 @@ static BOOL test_LookupPrivDisplayName(struct dcerpc_pipe *p, struct lsa_Name *priv_name) { struct lsa_LookupPrivDisplayName r; - struct lsa_Name disp_name; NTSTATUS status; - ZERO_STRUCT(disp_name); - printf("testing LookupPrivDisplayName(%s)\n", priv_name->name); r.in.handle = handle; r.in.name = priv_name; r.in.unknown = 0; r.in.unknown2 = 0; - r.out.disp_name = &disp_name; status = dcerpc_lsa_LookupPrivDisplayName(p, mem_ctx, &r); if (!NT_STATUS_IS_OK(status)) { |