diff options
author | Gerald Carter <jerry@samba.org> | 2003-07-31 05:43:47 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2003-07-31 05:43:47 +0000 |
commit | 0d087e3ba28a9061529c95799624ccc4686eb1e9 (patch) | |
tree | 6284d9b57fc77694b6967fc76ce90eadadb5a40b /source3/rpc_client | |
parent | 48c01deb300b51c97865ec0d738c64c7722da0d7 (diff) | |
download | samba-0d087e3ba28a9061529c95799624ccc4686eb1e9.tar.gz samba-0d087e3ba28a9061529c95799624ccc4686eb1e9.tar.bz2 samba-0d087e3ba28a9061529c95799624ccc4686eb1e9.zip |
working on transtive trusts issue:
* use DsEnumerateDomainTrusts() instead of LDAP search.
wbinfo -m now lists all trusted downlevel domains and
all domains in the forest.
Thnigs to do:
o Look at Krb5 connection trusted domains
o make sure to initial the trusted domain cache as soon
as possible
(This used to be commit 0ab00ccaedf204b39c86a9e1c2fcac5f15d0e033)
Diffstat (limited to 'source3/rpc_client')
-rw-r--r-- | source3/rpc_client/cli_ds.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source3/rpc_client/cli_ds.c b/source3/rpc_client/cli_ds.c index 2f2111e963..a7a093328c 100644 --- a/source3/rpc_client/cli_ds.c +++ b/source3/rpc_client/cli_ds.c @@ -115,11 +115,16 @@ NTSTATUS cli_ds_enum_domain_trusts(struct cli_state *cli, TALLOC_CTX *mem_ctx, result = r.status; if ( NT_STATUS_IS_OK(result) ) { + int i; *num_domains = r.num_domains; *trusts = (DS_DOMAIN_TRUSTS*)smb_xmalloc(r.num_domains*sizeof(DS_DOMAIN_TRUSTS)); memcpy( *trusts, r.domains.trusts, r.num_domains*sizeof(DS_DOMAIN_TRUSTS) ); + for ( i=0; i<r.num_domains; i++ ) { + copy_unistr2( &(*trusts)[i].netbios_domain, &r.domains.trusts[i].netbios_domain ); + copy_unistr2( &(*trusts)[i].dns_domain, &r.domains.trusts[i].dns_domain ); + } } done: |