Skip to content

Commit

Permalink
More debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
jgoertzen-sb committed Dec 14, 2023
1 parent ebe604b commit e8309d3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion bin/named/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1504,7 +1504,7 @@ main(int argc, char *argv[]) {
printf("=============================================================\n");
printf("starting providers\n");
printf("=============================================================\n");

fflush(stdout);
/*
* Technically, this call is superfluous because on startup of the main
* program, the portable "C" locale is selected by default. This
Expand Down Expand Up @@ -1546,6 +1546,7 @@ main(int argc, char *argv[]) {
printf("=============================================================\n");
printf("loading providers\n");
printf("=============================================================\n");
fflush(stdout);
#if OPENSSL_VERSION_NUMER >= 0x30200000L && OPENSSL_API_LEVEL >= 30200
oqs = OSSL_PROVIDER_load(OSSL_LIB_CTX_get0_global_default(), "oqsprovider");
if (oqs == NULL) {
Expand Down Expand Up @@ -1575,6 +1576,7 @@ main(int argc, char *argv[]) {
printf("=============================================================\n");
printf("loaded providers\n");
printf("=============================================================\n");
fflush(stdout);

named_os_init(program_name);

Expand Down

0 comments on commit e8309d3

Please sign in to comment.