Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/external/mpl/bind/dist/lib/dns/rdata/generic/nsec3param_51.c,v rcsdiff: /ftp/cvs/cvsroot/src/external/mpl/bind/dist/lib/dns/rdata/generic/nsec3param_51.c,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.1.1.2 retrieving revision 1.1.1.3 diff -u -p -r1.1.1.2 -r1.1.1.3 --- src/external/mpl/bind/dist/lib/dns/rdata/generic/nsec3param_51.c 2019/01/09 16:48:22 1.1.1.2 +++ src/external/mpl/bind/dist/lib/dns/rdata/generic/nsec3param_51.c 2019/11/24 19:58:06 1.1.1.3 @@ -1,4 +1,4 @@ -/* $NetBSD: nsec3param_51.c,v 1.1.1.2 2019/01/09 16:48:22 christos Exp $ */ +/* $NetBSD: nsec3param_51.c,v 1.1.1.3 2019/11/24 19:58:06 christos Exp $ */ /* * Copyright (C) Internet Systems Consortium, Inc. ("ISC") @@ -200,7 +200,7 @@ fromstruct_nsec3param(ARGS_FROMSTRUCT) { dns_rdata_nsec3param_t *nsec3param = source; REQUIRE(type == dns_rdatatype_nsec3param); - REQUIRE(source != NULL); + REQUIRE(nsec3param != NULL); REQUIRE(nsec3param->common.rdtype == type); REQUIRE(nsec3param->common.rdclass == rdclass); @@ -222,7 +222,7 @@ tostruct_nsec3param(ARGS_TOSTRUCT) { dns_rdata_nsec3param_t *nsec3param = target; REQUIRE(rdata->type == dns_rdatatype_nsec3param); - REQUIRE(target != NULL); + REQUIRE(nsec3param != NULL); REQUIRE(rdata->length != 0); nsec3param->common.rdclass = rdata->rdclass; @@ -250,7 +250,7 @@ static inline void freestruct_nsec3param(ARGS_FREESTRUCT) { dns_rdata_nsec3param_t *nsec3param = source; - REQUIRE(source != NULL); + REQUIRE(nsec3param != NULL); REQUIRE(nsec3param->common.rdtype == dns_rdatatype_nsec3param); if (nsec3param->mctx == NULL)