mirror of
https://github.com/samba-team/samba.git
synced 2024-12-23 17:34:34 +03:00
s4:dns_server: failed dns updates should result in REFUSED for ACCESS_DENIED
BUG: https://bugzilla.samba.org/show_bug.cgi?id=13019
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
(cherry picked from commit a56627b0d1
)
This commit is contained in:
parent
a7f3293ddf
commit
ed8ef00c29
@ -68,6 +68,8 @@ uint8_t werr_to_dns_err(WERROR werr)
|
||||
return DNS_RCODE_NOTZONE;
|
||||
} else if (W_ERROR_EQUAL(DNS_ERR(BADKEY), werr)) {
|
||||
return DNS_RCODE_BADKEY;
|
||||
} else if (W_ERROR_EQUAL(WERR_ACCESS_DENIED, werr)) {
|
||||
return DNS_RCODE_REFUSED;
|
||||
}
|
||||
DEBUG(5, ("No mapping exists for %s\n", win_errstr(werr)));
|
||||
return DNS_RCODE_SERVFAIL;
|
||||
|
Loading…
Reference in New Issue
Block a user