mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-30 14:07:59 +00:00
3389. [bug] Always return NOERROR (not 0) in TSIG. [RT #31275]
This commit is contained in:
parent
d4a3f19908
commit
2ec7373254
2
CHANGES
2
CHANGES
@ -1,3 +1,5 @@
|
|||||||
|
3389. [bug] Always return NOERROR (not 0) in TSIG. [RT #31275]
|
||||||
|
|
||||||
3388. [bug] Fixed several Coverity warnings. [RT #30996]
|
3388. [bug] Fixed several Coverity warnings. [RT #30996]
|
||||||
|
|
||||||
3387. [func] DS digest can be disabled at runtime with
|
3387. [func] DS digest can be disabled at runtime with
|
||||||
|
@ -226,12 +226,7 @@ totext_any_tsig(ARGS_TOTEXT) {
|
|||||||
*/
|
*/
|
||||||
n = uint16_fromregion(&sr);
|
n = uint16_fromregion(&sr);
|
||||||
isc_region_consume(&sr, 2);
|
isc_region_consume(&sr, 2);
|
||||||
if (dns_tsigrcode_totext((dns_rcode_t)n, target) == ISC_R_SUCCESS)
|
RETERR(dns_tsigrcode_totext((dns_rcode_t)n, target));
|
||||||
RETERR(str_totext(" ", target));
|
|
||||||
else {
|
|
||||||
sprintf(buf, "%u ", n);
|
|
||||||
RETERR(str_totext(buf, target));
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Other Size.
|
* Other Size.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user