about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMoshe Kaplan <me@moshekaplan.com>2023-05-04 11:23:30 -0400
committerGitHub <noreply@github.com>2023-05-04 17:23:30 +0200
commitf516926f006545d45162eaef723d786a427721f8 (patch)
tree6205ebc10c3d5648da3d6e5b8bc61246b3c3f4a8
parenta7b7f3cde9b3a420ea5ac32f7309e8a856a01e94 (diff)
downloadafl++-f516926f006545d45162eaef723d786a427721f8.tar.gz
afl-fuzz.c: Document -i - in --help (#1725)
afl-fuzz.c: Document `-i -` in `--help`, to write that `-i` can be passed '-' to resume the prior fuzzing job. Also reference AFL_AUTORESUME so users know they can set that parameter to sidestep the issue entirely.
-rw-r--r--src/afl-fuzz.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afl-fuzz.c b/src/afl-fuzz.c
index c02479cf..c5206282 100644
--- a/src/afl-fuzz.c
+++ b/src/afl-fuzz.c
@@ -124,7 +124,7 @@ static void usage(u8 *argv0, int more_help) {
       "\n%s [ options ] -- /path/to/fuzzed_app [ ... ]\n\n"
 
       "Required parameters:\n"
-      "  -i dir        - input directory with test cases\n"
+      "  -i dir        - input directory with test cases (or '-' to resume, also see AFL_AUTORESUME)\n"
       "  -o dir        - output directory for fuzzer findings\n\n"
 
       "Execution control settings:\n"