mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-11 11:09:59 -04:00
Merge branch '343-casecompare-of-ninfo-tkey-txt-have-wrong-return-type' into 'master'
Resolve "casecompare of NINFO, TKEY, TXT have wrong return type" Closes #343 See merge request isc-projects/bind9!384
This commit is contained in:
commit
16a67911d8
3 changed files with 3 additions and 3 deletions
|
|
@ -155,7 +155,7 @@ checknames_ninfo(ARGS_CHECKNAMES) {
|
|||
return (ISC_TRUE);
|
||||
}
|
||||
|
||||
static inline isc_result_t
|
||||
static inline int
|
||||
casecompare_ninfo(ARGS_COMPARE) {
|
||||
return (compare_ninfo(rdata1, rdata2));
|
||||
}
|
||||
|
|
|
|||
|
|
@ -549,7 +549,7 @@ checknames_tkey(ARGS_CHECKNAMES) {
|
|||
return (ISC_TRUE);
|
||||
}
|
||||
|
||||
static inline isc_result_t
|
||||
static inline int
|
||||
casecompare_tkey(ARGS_COMPARE) {
|
||||
return (compare_tkey(rdata1, rdata2));
|
||||
}
|
||||
|
|
|
|||
|
|
@ -273,7 +273,7 @@ checknames_txt(ARGS_CHECKNAMES) {
|
|||
return (ISC_TRUE);
|
||||
}
|
||||
|
||||
static inline isc_result_t
|
||||
static inline int
|
||||
casecompare_txt(ARGS_COMPARE) {
|
||||
return (compare_txt(rdata1, rdata2));
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue