diff options
author | Andrew Tridgell <tridge@samba.org> | 2011-08-24 13:51:01 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2011-08-25 07:39:39 +1000 |
commit | 085936926a446a289b88dfafcfe425c5dfe615b1 (patch) | |
tree | 5bd4ddccdf211184ff2489256dcb76796e17123f /source4/libnet | |
parent | 4f421d04064c7f1a3a4052a37c2908a8e5dbeb89 (diff) | |
download | samba-085936926a446a289b88dfafcfe425c5dfe615b1.tar.gz samba-085936926a446a289b88dfafcfe425c5dfe615b1.tar.bz2 samba-085936926a446a289b88dfafcfe425c5dfe615b1.zip |
s4-libnet: fixed forest DNS name
Pair-Programmed-With: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4/libnet')
-rw-r--r-- | source4/libnet/libnet_become_dc.c | 2 | ||||
-rw-r--r-- | source4/libnet/py_net.c | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/source4/libnet/libnet_become_dc.c b/source4/libnet/libnet_become_dc.c index bfa637255c..34ca97c274 100644 --- a/source4/libnet/libnet_become_dc.c +++ b/source4/libnet/libnet_become_dc.c @@ -2935,7 +2935,7 @@ static void becomeDC_drsuapi_update_refs_send(struct libnet_BecomeDC_state *s, ntds_dns_name = talloc_asprintf(r, "%s._msdcs.%s", ntds_guid_str, - s->domain.dns_name); + s->forest.dns_name); if (composite_nomem(ntds_dns_name, c)) return; r->in.bind_handle = &drsuapi->bind_handle; diff --git a/source4/libnet/py_net.c b/source4/libnet/py_net.c index c4b684077c..cf2f066081 100644 --- a/source4/libnet/py_net.c +++ b/source4/libnet/py_net.c @@ -32,6 +32,7 @@ #include "librpc/rpc/pyrpc_util.h" #include "libcli/finddc.h" #include "libcli/resolve/resolve.h" +#include "dsdb/common/proto.h" void initnet(void); @@ -447,7 +448,7 @@ static PyObject *py_net_replicate_init(py_net_Object *self, PyObject *args, PyOb return NULL; } - s->forest.dns_name = lpcfg_dnsdomain(lp); + s->forest.dns_name = samdb_dn_to_dns_domain(s, ldb_get_root_basedn(samdb)); s->chunk.gensec_skey = &s->gensec_skey; s->chunk.partition = &s->partition; |