summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
Diffstat (limited to 'source4')
-rw-r--r--source4/librpc/idl/lsa.idl2
-rw-r--r--source4/torture/rpc/lsa.c5
2 files changed, 5 insertions, 2 deletions
diff --git a/source4/librpc/idl/lsa.idl b/source4/librpc/idl/lsa.idl
index ec694df1bf..c36fce9dae 100644
--- a/source4/librpc/idl/lsa.idl
+++ b/source4/librpc/idl/lsa.idl
@@ -658,7 +658,7 @@
NTSTATUS lsa_GetUserName(
[in] unistr *system_name,
[in,out] lsa_String *account_name,
- [in,out] lsa_StringPointer *unknown_name
+ [in,out] lsa_StringPointer *authority_name
);
/**********************/
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);