diff options
author | vanhauser-thc <vh@thc.org> | 2023-04-25 16:47:37 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2023-04-25 16:47:37 +0200 |
commit | 21865c622483d2e2285de3dfad4626c28ca27843 (patch) | |
tree | 7f184e4091906ea8e6cdd0e15e304db0873d22e6 /instrumentation/afl-compiler-rt.o.c | |
parent | b96ba509d0e52478445822ae89621c2bf7c04d7d (diff) | |
download | afl++-21865c622483d2e2285de3dfad4626c28ca27843.tar.gz |
rename env to AFL_IGNORE_PROBLEMS_COVERAGE
Diffstat (limited to 'instrumentation/afl-compiler-rt.o.c')
-rw-r--r-- | instrumentation/afl-compiler-rt.o.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/instrumentation/afl-compiler-rt.o.c b/instrumentation/afl-compiler-rt.o.c index 74506e4c..0912e52b 100644 --- a/instrumentation/afl-compiler-rt.o.c +++ b/instrumentation/afl-compiler-rt.o.c @@ -1565,13 +1565,13 @@ void __sanitizer_cov_trace_pc_guard_init(uint32_t *start, uint32_t *stop) { "be able to fuzz them or LD_PRELOAD to run outside of afl-fuzz.\n" "To ignore this set AFL_IGNORE_PROBLEMS=1 but this will lead to " "ambiguous coverage data.\n" - "In addition, you can set AFL_LLVM_IGNORE_PROBLEMS_COVERAGE=1 to " + "In addition, you can set AFL_IGNORE_PROBLEMS_COVERAGE=1 to " "ignore the additional coverage instead (use with caution!).\n"); abort(); } else { - u8 ignore_dso_after_fs = !!getenv("AFL_LLVM_IGNORE_PROBLEMS_COVERAGE"); + u8 ignore_dso_after_fs = !!getenv("AFL_IGNORE_PROBLEMS_COVERAGE"); if (__afl_debug && ignore_dso_after_fs) { fprintf(stderr, "Ignoring coverage from dynamically loaded code\n"); |