summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--librpc/idl/netlogon.idl4
-rw-r--r--source4/torture/rpc/netlogon.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/librpc/idl/netlogon.idl b/librpc/idl/netlogon.idl
index f3bfc3032bc..50b9c9ea8b9 100644
--- a/librpc/idl/netlogon.idl
+++ b/librpc/idl/netlogon.idl
@@ -1594,8 +1594,8 @@ interface netlogon
[in] [string,charset(UTF16)] uint16 *computer_name,
[in,ref] netr_Authenticator *credential,
[out,ref] netr_Authenticator *return_authenticator,
- [out,ref] samr_Password *password,
- [out,ref] samr_Password *password2
+ [out,ref] samr_Password *new_owf_password,
+ [out,ref] samr_Password *old_owf_password
);
/****************/
diff --git a/source4/torture/rpc/netlogon.c b/source4/torture/rpc/netlogon.c
index a2450cf1c25..eb9afd011c5 100644
--- a/source4/torture/rpc/netlogon.c
+++ b/source4/torture/rpc/netlogon.c
@@ -781,8 +781,8 @@ static bool test_GetTrustPasswords(struct torture_context *tctx,
r.in.computer_name = TEST_MACHINE_NAME;
r.in.credential = &credential;
r.out.return_authenticator = &return_authenticator;
- r.out.password = &password;
- r.out.password2 = &password2;
+ r.out.new_owf_password = &password;
+ r.out.old_owf_password = &password2;
torture_assert_ntstatus_ok(tctx, dcerpc_netr_ServerTrustPasswordsGet_r(b, tctx, &r),
"ServerTrustPasswordsGet failed");