diff options
Diffstat (limited to 'src/afl-fuzz.c')
-rw-r--r-- | src/afl-fuzz.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/afl-fuzz.c b/src/afl-fuzz.c index c7f8ccad..d4c75d9c 100644 --- a/src/afl-fuzz.c +++ b/src/afl-fuzz.c @@ -314,7 +314,14 @@ int main(int argc, char** argv, char** envp) { if (in_dir) FATAL("Multiple -i options not supported"); in_dir = optarg; - if (!strcmp(in_dir, "-")) in_place_resume = 1; + if (!strcmp(in_dir, "-")) { + + if (getenv("AFL_AUTORESUME")) + WARNF("AFL_AUTORESUME has no effect for '-i -'"); + + in_place_resume = 1; + + } break; @@ -649,7 +656,7 @@ int main(int argc, char** argv, char** envp) { usage(argv[0], show_help); OKF("afl++ is maintained by Marc \"van Hauser\" Heuse, Heiko \"hexcoder\" " - "Eißfeldt and Andrea Fioraldi"); + "Eißfeldt, Andrea Fioraldi and Dominik Maier"); OKF("afl++ is open source, get it at " "https://github.com/vanhauser-thc/AFLplusplus"); OKF("Power schedules from github.com/mboehme/aflfast"); |