diff --git a/CHANGES b/CHANGES index 9a38b15ab1..67a7bc14b3 100644 --- a/CHANGES +++ b/CHANGES @@ -239,6 +239,9 @@ 2580. [bug] UpdateRej statistics counter could be incremented twice for one rejection. [RT #19476] +2500. [contrib] contrib/sdb/pgsql/zonetodb.c called non-existant + function. [RT #18582] + --- 9.6.1 released --- 2607. [bug] named could incorrectly delete NSEC3 records for diff --git a/contrib/sdb/pgsql/zonetodb.c b/contrib/sdb/pgsql/zonetodb.c index ba93027c41..afe9ce38e0 100644 --- a/contrib/sdb/pgsql/zonetodb.c +++ b/contrib/sdb/pgsql/zonetodb.c @@ -15,7 +15,7 @@ * PERFORMANCE OF THIS SOFTWARE. */ -/* $Id: zonetodb.c,v 1.20 2008/09/25 04:02:38 tbox Exp $ */ +/* $Id: zonetodb.c,v 1.20.42.1 2009/12/02 23:54:24 marka Exp $ */ #include #include @@ -165,7 +165,7 @@ main(int argc, char **argv) { check_result(result, "isc_mem_create"); result = isc_entropy_create(mctx, &ectx); - result_check (result, "isc_entropy_create"); + check_result (result, "isc_entropy_create"); result = isc_hash_create(mctx, ectx, DNS_NAME_MAXWIRE); check_result (result, "isc_hash_create");