diff --git a/doc/Changelog b/doc/Changelog index cf0e56b45..5f02a2b05 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -1,5 +1,6 @@ 19 February 2016: Wouter - Print understandable debug log when unusable DS record is seen. + - load gost algorithm into unbound-host. 17 February 2016: Wouter - Fix that "make install" fails due to "text file busy" error. diff --git a/smallapp/unbound-host.c b/smallapp/unbound-host.c index 30fef51fd..b256a3226 100644 --- a/smallapp/unbound-host.c +++ b/smallapp/unbound-host.c @@ -418,6 +418,9 @@ int main(int argc, char* argv[]) struct ub_ctx* ctx = NULL; int debuglevel = 0; +# ifdef USE_GOST + (void)sldns_key_EVP_load_gost_id(); +# endif ctx = ub_ctx_create(); if(!ctx) { fprintf(stderr, "error: out of memory\n");