2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-29 13:38:26 +00:00

checkowner had wrong type and class

This commit is contained in:
Mark Andrews 2004-03-02 01:40:44 +00:00
parent f0e57c23e0
commit d970376259

View File

@ -15,7 +15,7 @@
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/ */
/* $Id: px_26.c,v 1.37 2004/02/27 20:41:50 marka Exp $ */ /* $Id: px_26.c,v 1.38 2004/03/02 01:40:44 marka Exp $ */
/* Reviewed: Mon Mar 20 10:44:27 PST 2000 */ /* Reviewed: Mon Mar 20 10:44:27 PST 2000 */
@ -347,8 +347,8 @@ digest_in_px(ARGS_DIGEST) {
static inline isc_boolean_t static inline isc_boolean_t
checkowner_in_px(ARGS_CHECKOWNER) { checkowner_in_px(ARGS_CHECKOWNER) {
REQUIRE(type == 250); REQUIRE(type == 26);
REQUIRE(rdclass == 255); REQUIRE(rdclass == 1);
UNUSED(name); UNUSED(name);
UNUSED(type); UNUSED(type);