diff options
author | Andrew Bartlett <abartlet@samba.org> | 2005-01-12 02:40:25 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:08:44 -0500 |
commit | c0571f623406ca33a4d5ce616c743479335eeba0 (patch) | |
tree | dc05f1e9787a52a96dfdedcc2727ad8d5bf9ab8d /source4/torture | |
parent | 9eaf1b45c0514dd9772059b460a99922c691de9a (diff) | |
download | samba-c0571f623406ca33a4d5ce616c743479335eeba0.tar.gz samba-c0571f623406ca33a4d5ce616c743479335eeba0.tar.bz2 samba-c0571f623406ca33a4d5ce616c743479335eeba0.zip |
r4698: - Initial implementation of trusted domains in LSA.
- Use templates for Secrets and the new trusted domains
- Auto-add modifiedTime, createdTime and objectGUID to records in the
samdb layer.
Andrew Bartlett
(This used to be commit 271c8faadfe2d9e0f3d523a1cdc831f5f9e35d19)
Diffstat (limited to 'source4/torture')
-rw-r--r-- | source4/torture/rpc/lsa.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/torture/rpc/lsa.c b/source4/torture/rpc/lsa.c index c5b74c8674..98de8df78c 100644 --- a/source4/torture/rpc/lsa.c +++ b/source4/torture/rpc/lsa.c @@ -639,7 +639,7 @@ static BOOL test_CreateTrustedDomain(struct dcerpc_pipe *p, struct lsa_CreateTrustedDomain r; struct lsa_TrustInformation trustinfo; struct dom_sid *domsid; - struct policy_handle dom_handle; + struct policy_handle trustdom_handle; printf("Testing CreateTrustedDomain\n"); @@ -651,7 +651,7 @@ static BOOL test_CreateTrustedDomain(struct dcerpc_pipe *p, r.in.handle = handle; r.in.info = &trustinfo; r.in.access_mask = SEC_FLAG_MAXIMUM_ALLOWED; - r.out.dom_handle = &dom_handle; + r.out.trustdom_handle = &trustdom_handle; status = dcerpc_lsa_CreateTrustedDomain(p, mem_ctx, &r); if (NT_STATUS_EQUAL(status, NT_STATUS_OBJECT_NAME_COLLISION)) { @@ -663,7 +663,7 @@ static BOOL test_CreateTrustedDomain(struct dcerpc_pipe *p, return False; } - if (!test_Delete(p, mem_ctx, &dom_handle)) { + if (!test_Delete(p, mem_ctx, &trustdom_handle)) { return False; } |