diff options
author | van Hauser <vh@thc.org> | 2020-03-09 08:30:28 +0100 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-03-09 08:30:28 +0100 |
commit | 36ce9c1fb977eb6e2b0cd35846457ff0af045b99 (patch) | |
tree | 967ae76207e93f50bb7976fcfb47bc061f09820b /src/afl-fuzz-init.c | |
parent | 0581f6ec00dbca592582c0bd23c82de524df7a03 (diff) | |
download | afl++-36ce9c1fb977eb6e2b0cd35846457ff0af045b99.tar.gz |
more code format
Diffstat (limited to 'src/afl-fuzz-init.c')
-rw-r--r-- | src/afl-fuzz-init.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/afl-fuzz-init.c b/src/afl-fuzz-init.c index 08b6de60..8cabd9eb 100644 --- a/src/afl-fuzz-init.c +++ b/src/afl-fuzz-init.c @@ -990,7 +990,7 @@ dir_cleanup_failed: } /* Delete fuzzer output directory if we recognize it as ours, if the fuzzer - is not currently running, and if the last run time isn't too great. + is not currently running, and if the last run time isn't too great. Resume fuzzing if `-` is set as in_dir or if AFL_AUTORESUME is set */ static void handle_existing_out_dir(void) { @@ -1036,10 +1036,11 @@ static void handle_existing_out_dir(void) { fclose(f); - /* Autoresume treats a normal run as in_place_resume if a valid out dir already exists */ + /* Autoresume treats a normal run as in_place_resume if a valid out dir + * already exists */ if (!in_place_resume && autoresume) { - + OKF("Detected prior run with AFL_AUTORESUME set. Resuming."); in_place_resume = 1; |