From 42e055e12496a0eab72c64de845aa5bb18a9c4a2 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Thu, 10 Nov 2016 01:33:54 +0100 Subject: [PATCH] Fix no-ct in test/ct_test.c Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/1890) --- test/ct_test.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/ct_test.c b/test/ct_test.c index edd02afea2..1cfd0d17f6 100644 --- a/test/ct_test.c +++ b/test/ct_test.c @@ -555,4 +555,10 @@ int test_main(int argc, char *argv[]) return result; } +#else +int test_main(int argc, char *argv[]) +{ + printf("No CT support\n"); + return 0; +} #endif -- 2.34.1