summaryrefslogtreecommitdiff
path: root/source4/torture/rpc/lsa.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2004-12-21 10:05:02 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:07:33 -0500
commit6bc971d8b5fbdaaaed1c4756424395ce8fc1e42b (patch)
treecac2fd39d7c12d580c205d023ea620cb5658c85a /source4/torture/rpc/lsa.c
parentc2f94222e9625593e026d21ff314039cc776c592 (diff)
downloadsamba-6bc971d8b5fbdaaaed1c4756424395ce8fc1e42b.tar.gz
samba-6bc971d8b5fbdaaaed1c4756424395ce8fc1e42b.tar.bz2
samba-6bc971d8b5fbdaaaed1c4756424395ce8fc1e42b.zip
r4310: fixed the authority_name field in lsa_GetUserName()
(This used to be commit f78506697ad23456fcac6e8916d0dad05b0df6cc)
Diffstat (limited to 'source4/torture/rpc/lsa.c')
-rw-r--r--source4/torture/rpc/lsa.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/source4/torture/rpc/lsa.c b/source4/torture/rpc/lsa.c
index 39d433a791..77e7827cf9 100644
--- a/source4/torture/rpc/lsa.c
+++ b/source4/torture/rpc/lsa.c
@@ -1145,11 +1145,14 @@ static BOOL test_GetUserName(struct dcerpc_pipe *p,
struct lsa_GetUserName r;
NTSTATUS status;
BOOL ret = True;
+ struct lsa_StringPointer lsap;
+
printf("\nTesting GetUserName\n");
r.in.system_name = "\\";
r.in.account_name = NULL;
- r.in.unknown_name = NULL;
+ r.in.authority_name = &lsap;
+ lsap.string = NULL;
status = dcerpc_lsa_GetUserName(p, mem_ctx, &r);