summaryrefslogtreecommitdiffstats
path: root/fuzz/asn1parse.c
diff options
context:
space:
mode:
authorKurt Roeckx <kurt@roeckx.be>2016-05-07 22:09:13 +0200
committerKurt Roeckx <kurt@roeckx.be>2016-06-04 14:39:24 +0200
commitf59d0131cb6fc224aee0a0a92de1f04cdebe97c8 (patch)
tree58b37d06e30988507c0b9eb59bc66ff8747a58af /fuzz/asn1parse.c
parent255cf605d67e72b73e6130d4c7bbe68c0eb22d8e (diff)
Add support for fuzzing with AFL
Reviewed-by: Ben Laurie <ben@links.org> MR: #2740
Diffstat (limited to 'fuzz/asn1parse.c')
-rw-r--r--fuzz/asn1parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fuzz/asn1parse.c b/fuzz/asn1parse.c
index 63104fb7d0..2fe420b140 100644
--- a/fuzz/asn1parse.c
+++ b/fuzz/asn1parse.c
@@ -18,7 +18,7 @@
#include <openssl/x509v3.h>
#include "fuzzer.h"
-int LLVMFuzzerTestOneInput(const uint8_t *buf, size_t len) {
+int FuzzerTestOneInput(const uint8_t *buf, size_t len) {
static BIO *bio_out;
if (bio_out == NULL)