summaryrefslogtreecommitdiff
path: root/auth
diff options
context:
space:
mode:
authorAlexander Bokovoy <ab@samba.org>2021-11-12 19:06:01 +0200
committerAlexander Bokovoy <ab@samba.org>2021-11-13 07:01:26 +0000
commitc69b66f649c1d47a7367f7efe25b8df32369a3a5 (patch)
treeee5f50fc6e1fbded72dd8517855d2ff26db40755 /auth
parent240addaed7b87759dff13c1c6c18681815c28c92 (diff)
downloadsamba-c69b66f649c1d47a7367f7efe25b8df32369a3a5.tar.gz
IPA DC: add missing checks
When introducing FreeIPA support, two places were forgotten: - schannel gensec module needs to be aware of IPA DC - _lsa_QueryInfoPolicy should treat IPA DC as PDC BUG: https://bugzilla.samba.org/show_bug.cgi?id=14903 Signed-off-by: Alexander Bokovoy <ab@samba.org> Reviewed-by: Guenther Deschner <gd@samba.org> Autobuild-User(master): Alexander Bokovoy <ab@samba.org> Autobuild-Date(master): Sat Nov 13 07:01:26 UTC 2021 on sn-devel-184
Diffstat (limited to 'auth')
-rw-r--r--auth/gensec/schannel.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/auth/gensec/schannel.c b/auth/gensec/schannel.c
index 0cdae141ead..6ebbe8f3179 100644
--- a/auth/gensec/schannel.c
+++ b/auth/gensec/schannel.c
@@ -1080,6 +1080,7 @@ static NTSTATUS schannel_server_start(struct gensec_security *gensec_security)
case ROLE_DOMAIN_BDC:
case ROLE_DOMAIN_PDC:
case ROLE_ACTIVE_DIRECTORY_DC:
+ case ROLE_IPA_DC:
return NT_STATUS_OK;
default:
return NT_STATUS_NOT_IMPLEMENTED;