summaryrefslogtreecommitdiff
path: root/source4/torture/rpc
diff options
context:
space:
mode:
Diffstat (limited to 'source4/torture/rpc')
-rw-r--r--source4/torture/rpc/lsa.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/torture/rpc/lsa.c b/source4/torture/rpc/lsa.c
index 77e7827cf9..7d1ba5fdae 100644
--- a/source4/torture/rpc/lsa.c
+++ b/source4/torture/rpc/lsa.c
@@ -1145,14 +1145,14 @@ static BOOL test_GetUserName(struct dcerpc_pipe *p,
struct lsa_GetUserName r;
NTSTATUS status;
BOOL ret = True;
- struct lsa_StringPointer lsap;
+ struct lsa_StringPointer authority_name_p;
printf("\nTesting GetUserName\n");
r.in.system_name = "\\";
r.in.account_name = NULL;
- r.in.authority_name = &lsap;
- lsap.string = NULL;
+ r.in.authority_name = &authority_name_p;
+ authority_name_p.string = NULL;
status = dcerpc_lsa_GetUserName(p, mem_ctx, &r);