mirror of
https://github.com/samba-team/samba.git
synced 2025-02-26 21:57:41 +03:00
s4:cldap_server: set DS_SERVER_SELECT_SECRET_DOMAIN_6 if we're a RODC
metze
This commit is contained in:
parent
f3b69da2ae
commit
4c5019d507
@ -73,7 +73,7 @@ NTSTATUS fill_netlogon_samlogon_response(struct ldb_context *sam_ctx,
|
||||
const char *pdc_ip;
|
||||
struct ldb_dn *domain_dn = NULL;
|
||||
struct interface *ifaces;
|
||||
bool user_known, am_rodc;
|
||||
bool user_known = false, am_rodc = false;
|
||||
NTSTATUS status;
|
||||
|
||||
/* the domain parameter could have an optional trailing "." */
|
||||
@ -230,10 +230,6 @@ NTSTATUS fill_netlogon_samlogon_response(struct ldb_context *sam_ctx,
|
||||
server_type |= DS_SERVER_PDC;
|
||||
}
|
||||
|
||||
if (dsdb_functional_level(sam_ctx) >= DS_DOMAIN_FUNCTION_2008) {
|
||||
server_type |= DS_SERVER_FULL_SECRET_DOMAIN_6;
|
||||
}
|
||||
|
||||
if (samdb_is_gc(sam_ctx)) {
|
||||
server_type |= DS_SERVER_GC;
|
||||
}
|
||||
@ -250,6 +246,14 @@ NTSTATUS fill_netlogon_samlogon_response(struct ldb_context *sam_ctx,
|
||||
server_type |= DS_SERVER_WRITABLE;
|
||||
}
|
||||
|
||||
if (dsdb_functional_level(sam_ctx) >= DS_DOMAIN_FUNCTION_2008) {
|
||||
if (server_type & DS_SERVER_WRITABLE) {
|
||||
server_type |= DS_SERVER_FULL_SECRET_DOMAIN_6;
|
||||
} else {
|
||||
server_type |= DS_SERVER_SELECT_SECRET_DOMAIN_6;
|
||||
}
|
||||
}
|
||||
|
||||
if (version & (NETLOGON_NT_VERSION_5EX|NETLOGON_NT_VERSION_5EX_WITH_IP)) {
|
||||
pdc_name = lpcfg_netbios_name(lp_ctx);
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user