mirror of
https://github.com/isc-projects/bind9.git
synced 2026-04-29 18:09:11 -04:00
2297. [bug] isc_entropy_createfilesource() failure not caught in
bin/tests/dst/t_dst.c. [RT #17467]
This commit is contained in:
parent
b01218b1bd
commit
9b43a690b5
2 changed files with 6 additions and 3 deletions
3
CHANGES
3
CHANGES
|
|
@ -1,3 +1,6 @@
|
|||
2297. [bug] isc_entropy_createfilesource() failure not caught in
|
||||
bin/tests/dst/t_dst.c. [RT #17467]
|
||||
|
||||
2296. [port] Allow docbook stylesheet location to be specified to
|
||||
configure. [RT #17457]
|
||||
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
* PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: t_dst.c,v 1.48.18.3 2005/11/30 23:52:53 marka Exp $ */
|
||||
/* $Id: t_dst.c,v 1.48.18.4 2008/01/12 21:53:33 marka Exp $ */
|
||||
|
||||
#include <config.h>
|
||||
|
||||
|
|
@ -377,7 +377,7 @@ t1(void) {
|
|||
t_result(T_UNRESOLVED);
|
||||
return;
|
||||
}
|
||||
result = isc_entropy_createfilesource(ectx, "randomfile");
|
||||
isc_result = isc_entropy_createfilesource(ectx, "randomfile");
|
||||
if (isc_result != ISC_R_SUCCESS) {
|
||||
t_info("isc_entropy_create failed %s\n",
|
||||
isc_result_totext(isc_result));
|
||||
|
|
@ -876,7 +876,7 @@ t2_vfy(char **av) {
|
|||
isc_result_totext(isc_result));
|
||||
return(T_UNRESOLVED);
|
||||
}
|
||||
result = isc_entropy_createfilesource(ectx, "randomfile");
|
||||
isc_result = isc_entropy_createfilesource(ectx, "randomfile");
|
||||
if (isc_result != ISC_R_SUCCESS) {
|
||||
t_info("isc_entropy_create failed %s\n",
|
||||
isc_result_totext(isc_result));
|
||||
|
|
|
|||
Loading…
Reference in a new issue