Fix no-ct in test/ct_test.c

Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/1890)
This commit is contained in:
Richard Levitte 2016-11-10 01:33:54 +01:00
parent 5a5b85d125
commit 42e055e124

View File

@ -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