summaryrefslogtreecommitdiffstats
path: root/fuzz/conf.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/conf.c
parent255cf605d67e72b73e6130d4c7bbe68c0eb22d8e (diff)
Add support for fuzzing with AFL
Reviewed-by: Ben Laurie <ben@links.org> MR: #2740
Diffstat (limited to 'fuzz/conf.c')
-rw-r--r--fuzz/conf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fuzz/conf.c b/fuzz/conf.c
index 3e3f7f184b..d10d6c7f33 100644
--- a/fuzz/conf.c
+++ b/fuzz/conf.c
@@ -15,7 +15,7 @@
#include <openssl/conf.h>
#include "fuzzer.h"
-int LLVMFuzzerTestOneInput(const uint8_t *buf, size_t len) {
+int FuzzerTestOneInput(const uint8_t *buf, size_t len) {
CONF *conf = NCONF_new(NULL);
BIO *in = BIO_new(BIO_s_mem());
long eline;