Add support for fuzzing with AFL
[openssl.git] / fuzz / ct.c
index 7050461142e4ba6e3d06e78a114ee7b869898342..dbb7ab4872421fe44d97f5f5e2c026d3a05496c3 100644 (file)
--- a/fuzz/ct.c
+++ b/fuzz/ct.c
@@ -16,7 +16,7 @@
 #include <openssl/ct.h>
 #include "fuzzer.h"
 
-int LLVMFuzzerTestOneInput(const uint8_t *buf, size_t len) {
+int FuzzerTestOneInput(const uint8_t *buf, size_t len) {
     const uint8_t **pp = &buf;
     STACK_OF(SCT) *scts = d2i_SCT_LIST(NULL, pp, len);
     SCT_LIST_free(scts);