From ff12c0c3932eddb8c7edde47769905bc7f9e4cf1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Jacke?= Date: Thu, 19 Nov 2020 12:18:28 +0100 Subject: [PATCH] dns_update.c: handle DNS_QTYPE_ALL we have code to handle this, we should not refuse the request BUG: https://bugzilla.samba.org/show_bug.cgi?id=14576 Signed-off-by: Bjoern Jacke --- source4/dns_server/dns_update.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source4/dns_server/dns_update.c b/source4/dns_server/dns_update.c index f98666111197..631e6d7f0db3 100644 --- a/source4/dns_server/dns_update.c +++ b/source4/dns_server/dns_update.c @@ -413,6 +413,7 @@ static WERROR handle_one_update(struct dns_server *dns, case DNS_QTYPE_AAAA: case DNS_QTYPE_SRV: case DNS_QTYPE_TXT: + case DNS_QTYPE_ALL: break; default: DEBUG(0, ("Can't handle updates of type %u yet\n", -- 2.25.1