summaryrefslogtreecommitdiffstats
path: root/test/ct_test.c
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-11-10 01:33:54 +0100
committerRichard Levitte <levitte@openssl.org>2016-11-10 15:49:22 +0100
commit42e055e12496a0eab72c64de845aa5bb18a9c4a2 (patch)
treecededff6188157267b56d1e221d24000871e5801 /test/ct_test.c
parent5a5b85d125795d9257876aee266e5b65875fae03 (diff)
Fix no-ct in test/ct_test.c
Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/1890)
Diffstat (limited to 'test/ct_test.c')
-rw-r--r--test/ct_test.c6
1 files changed, 6 insertions, 0 deletions
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