diff options
author | Dominik Maier <domenukk@gmail.com> | 2020-04-17 11:18:04 +0200 |
---|---|---|
committer | Dominik Maier <domenukk@gmail.com> | 2020-04-17 11:18:04 +0200 |
commit | bfcf6db17a40056d281f15368ca623b389977f2d (patch) | |
tree | 6ef760e6b897d8b0dcbd8c6576bf13aa9ce9ec93 | |
parent | f70d4a6fd4a14d81658c2726748949bbf25ec1fb (diff) | |
download | afl++-bfcf6db17a40056d281f15368ca623b389977f2d.tar.gz |
fixes
-rw-r--r-- | src/afl-showmap.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/afl-showmap.c b/src/afl-showmap.c index a11c128a..ef8e8261 100644 --- a/src/afl-showmap.c +++ b/src/afl-showmap.c @@ -488,11 +488,9 @@ static void usage(u8 *argv0) { "\n%s [ options ] -- /path/to/target_app [ ... ]\n\n" "Required parameters:\n" - " -o file - file to write the trace data to\n\n" "Execution control settings:\n" - " -t msec - timeout for each run (none)\n" " -m megs - memory limit for child process (%d MB)\n" " -Q - use binary-only instrumentation (QEMU mode)\n" @@ -500,9 +498,7 @@ static void usage(u8 *argv0) { " -W - use qemu-based instrumentation with Wine (Wine mode)\n" " (Not necessary, here for consistency with other afl-* " "tools)\n\n" - "Other settings:\n" - " -i dir - process all files in this directory, -o must be a " "directory\n" " and each bitmap will be written there individually.\n" @@ -524,7 +520,7 @@ static void usage(u8 *argv0) { "size\n" " the target was compiled for\n" "AFL_PRELOAD: LD_PRELOAD / DYLD_INSERT_LIBRARIES settings for target\n" - "AFL_QUIET: do not print extra informational output" argv0, + "AFL_QUIET: do not print extra informational output", argv0, MEM_LIMIT, doc_path); exit(1); |