From: Mark Andrews Date: Mon, 8 Jul 2019 00:36:34 +0000 (+1000) Subject: use printf instead of print_message for '1..0 # Skipped: sigs test requires crypto' X-Git-Tag: v9.11.9~2^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e070fdab1d0ef5fa70ae4aa4e3cc968541f845b0;p=thirdparty%2Fbind9.git use printf instead of print_message for '1..0 # Skipped: sigs test requires crypto' --- diff --git a/lib/dns/tests/sigs_test.c b/lib/dns/tests/sigs_test.c index 3eeda78d386..9ccec9cad6c 100644 --- a/lib/dns/tests/sigs_test.c +++ b/lib/dns/tests/sigs_test.c @@ -13,9 +13,10 @@ #if HAVE_CMOCKA +#include #include #include -#include +#include #if defined(OPENSSL) || defined(PKCS11CRYPTO) #include @@ -456,7 +457,7 @@ main(void) { return (cmocka_run_group_tests(tests, dns_test_init, dns_test_final)); #else - print_message("1..0 # Skipped: sigs test requires crypto\n"); + printf("1..0 # Skipped: sigs test requires crypto\n"); #endif }