2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-09-05 09:05:40 +00:00

Use the dst entropy wrapper in all cases, so that the initial entropy flags

passes into dst are always in effect.
This commit is contained in:
Brian Wellington
2000-06-12 18:05:15 +00:00
parent ef09af8fa2
commit c0975ccf5c
6 changed files with 15 additions and 22 deletions

View File

@@ -19,7 +19,7 @@
/*
* Principal Author: Brian Wellington
* $Id: dst_api.c,v 1.55 2000/06/12 07:07:53 bwelling Exp $
* $Id: dst_api.c,v 1.56 2000/06/12 18:05:10 bwelling Exp $
*/
#include <config.h>
@@ -525,7 +525,7 @@ dst_key_generate(dns_name_t *name, const unsigned int alg,
return (DST_R_UNSUPPORTEDALG);
}
ret = key->func->generate(key, param, dst_entropy_pool);
ret = key->func->generate(key, param);
if (ret != ISC_R_SUCCESS) {
dst_key_free(&key);
return (ret);