summaryrefslogtreecommitdiffstats
path: root/source/librpc
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2008-09-08 10:55:34 +1000
committerAndrew Bartlett <abartlet@samba.org>2008-09-08 10:55:34 +1000
commitd87b655e20b7c38756774cec2e5898af38c46786 (patch)
tree9dbc3e0b1f29b6fa093ef54b98b947d7467f8f9f /source/librpc
parent80f31c3272b8bc803629c27357033fd325529db1 (diff)
downloadsamba-d87b655e20b7c38756774cec2e5898af38c46786.tar.gz
samba-d87b655e20b7c38756774cec2e5898af38c46786.tar.xz
samba-d87b655e20b7c38756774cec2e5898af38c46786.zip
More work towards trusted domains support in Samba4's LSA
Make 'lsar_CreateTrustedDomain' consistant with lsar_CreateTrustedDomainEx{,2} by renaming handle -> policy_handle Implement LSA server logic to create the cn=users trust account for incoming trusts. Andrew Bartlett
Diffstat (limited to 'source/librpc')
-rw-r--r--source/librpc/idl/lsa.idl6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/librpc/idl/lsa.idl b/source/librpc/idl/lsa.idl
index 4de3d6f1bf1..b26d50c173d 100644
--- a/source/librpc/idl/lsa.idl
+++ b/source/librpc/idl/lsa.idl
@@ -311,7 +311,7 @@ import "misc.idl", "security.idl";
/* Function: 0x0c */
[public] NTSTATUS lsa_CreateTrustedDomain(
- [in] policy_handle *handle,
+ [in] policy_handle *policy_handle,
[in] lsa_DomainInfo *info,
[in] uint32 access_mask,
[out] policy_handle *trustdom_handle
@@ -626,7 +626,7 @@ import "misc.idl", "security.idl";
lsa_TrustDomainInfoInfoEx2Internal info;
lsa_TrustDomainInfoPosixOffset posix_offset;
lsa_TrustDomainInfoAuthInfo auth_info;
- } lsa_TrustDomainInfoInfo2Internal;
+ } lsa_TrustDomainInfoFullInfo2Internal;
typedef struct {
kerb_EncTypes enc_types;
@@ -656,7 +656,7 @@ import "misc.idl", "security.idl";
[case(LSA_TRUSTED_DOMAIN_INFO_INFO_EX2_INTERNAL)]
lsa_TrustDomainInfoInfoEx2Internal info_ex2_internal;
[case(LSA_TRUSTED_DOMAIN_INFO_FULL_INFO_2_INTERNAL)]
- lsa_TrustDomainInfoInfo2Internal info2_internal;
+ lsa_TrustDomainInfoFullInfo2Internal full_info2_internal;
[case(LSA_TRUSTED_DOMAIN_SUPPORTED_ENCRTYPION_TYPES)]
lsa_TrustDomainInfoSupportedEncTypes enc_types;
} lsa_TrustedDomainInfo;