]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
pullup: The third parameter to dst_lib_init is an integer, so should be 0, not NULL.
authorAndreas Gustafsson <source@isc.org>
Wed, 12 Jul 2000 01:18:55 +0000 (01:18 +0000)
committerAndreas Gustafsson <source@isc.org>
Wed, 12 Jul 2000 01:18:55 +0000 (01:18 +0000)
bin/rndc/rndc.c

index 311dc293d1f48ca3e6b7d1d064e8dc9a05d972d9..e07de3e5041cf4db960d3666050a61a9c4d30d23 100644 (file)
@@ -15,7 +15,7 @@
  * SOFTWARE.
  */
 
-/* $Id: rndc.c,v 1.12.2.4 2000/07/12 00:02:11 gson Exp $ */
+/* $Id: rndc.c,v 1.12.2.5 2000/07/12 01:18:55 gson Exp $ */
 
 /* 
  * Principal Author: DCL
@@ -355,7 +355,7 @@ main(int argc, char **argv) {
        DO("create entropy pool", isc_entropy_create(mctx, &entropy));
        /* XXXDCL probably should use ISC_ENTROPY_GOOD.  talk with graff. */
        DO("initialize digital signatures",
-          dst_lib_init(mctx, entropy, NULL));
+          dst_lib_init(mctx, entropy, 0));
 
        DO(conffile, dns_c_ndcparseconf(conffile, mctx, &config));