diff options
author | Andrew Tridgell <tridge@samba.org> | 2009-10-02 12:02:00 +1000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2009-10-02 12:02:00 +1000 |
commit | 4cb055cacdc8a28f1efee1d40546baa05515e24e (patch) | |
tree | 24dae728fa1b19956f4c3e4ab922736f7cac5701 /source3 | |
parent | 5d60a7e23ed7d9e6ff6e61dd5e9ee65796a22da4 (diff) | |
download | samba-4cb055cacdc8a28f1efee1d40546baa05515e24e.tar.gz samba-4cb055cacdc8a28f1efee1d40546baa05515e24e.tar.bz2 samba-4cb055cacdc8a28f1efee1d40546baa05515e24e.zip |
ds-flags: use the new name DS_DNS_FOREST_ROOT
Update to use the new DS_DNS_FOREST_ROOT name, which makes it clearer
what this bit means (according to MS-ADTS doc)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/libsmb/dsgetdcname.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libsmb/dsgetdcname.c b/source3/libsmb/dsgetdcname.c index 98b65942e4..180547063a 100644 --- a/source3/libsmb/dsgetdcname.c +++ b/source3/libsmb/dsgetdcname.c @@ -686,7 +686,7 @@ static NTSTATUS make_domain_controller_info(TALLOC_CTX *mem_ctx, if (forest_name && *forest_name) { info->forest_name = talloc_strdup(mem_ctx, forest_name); NT_STATUS_HAVE_NO_MEMORY(info->forest_name); - flags |= DS_DNS_FOREST; + flags |= DS_DNS_FOREST_ROOT; } info->dc_flags = flags; |