diff options
author | Andrew Tridgell <tridge@samba.org> | 2008-10-05 15:48:46 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2008-10-05 15:48:46 +1100 |
commit | de5edb1d0c0d60b337d2cbb7151db47d31bfa8d4 (patch) | |
tree | 708b619ad64baaf6fae218ef79eeab615d232231 /source4 | |
parent | fe67306fc626333da4f03f6f2a823de9cc2b6cc2 (diff) | |
download | samba-de5edb1d0c0d60b337d2cbb7151db47d31bfa8d4.tar.gz samba-de5edb1d0c0d60b337d2cbb7151db47d31bfa8d4.tar.bz2 samba-de5edb1d0c0d60b337d2cbb7151db47d31bfa8d4.zip |
remove dependencies on my home domain
(in other words, don't do commits in airports)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/rpc_server/netlogon/dcerpc_netlogon.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source4/rpc_server/netlogon/dcerpc_netlogon.c b/source4/rpc_server/netlogon/dcerpc_netlogon.c index 64d0f77303..d5f7d2afae 100644 --- a/source4/rpc_server/netlogon/dcerpc_netlogon.c +++ b/source4/rpc_server/netlogon/dcerpc_netlogon.c @@ -918,7 +918,8 @@ static NTSTATUS fill_domain_trust_info(TALLOC_CTX *mem_ctx, /* MS-NRPC 3.5.4.3.9 - must be set to NULL for trust list */ info->forest.string = NULL; } else { - info->forest.string = "bludom.tridgell.net"; /* need ldb search */ + /* TODO: we need a common function for pulling the forest */ + info->forest.string = samdb_result_string(ref_res, "dnsRoot", NULL); } if (is_local) { @@ -1026,7 +1027,7 @@ static NTSTATUS dcesrv_netr_LogonGetDomainInfo(struct dcesrv_call_state *dce_cal true, true); NT_STATUS_NOT_OK_RETURN(status); - info1->dns_hostname.string = "blu.bludom.tridgell.net"; + info1->dns_hostname.string = samdb_result_string(ref_res[0], "dnsRoot", NULL); info1->workstation_flags = NETR_WS_FLAG_HANDLES_INBOUND_TRUSTS | NETR_WS_FLAG_HANDLES_SPN_UPDATE; info1->supported_enc_types = 0; /* w2008 gives this 0 */ |