Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
hkctkuy committed Jun 12, 2024
1 parent 08336ac commit 76c12a2
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions casr/src/bin/casr-afl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,10 @@ fn main() -> Result<()> {
.arg(
Arg::new("join")
.long("join")
.env("CASR_PREV_CLSUTERS_DIR")
.env("CASR_PREV_CLUSTERS_DIR")
.action(ArgAction::Set)
.value_parser(clap::value_parser!(PathBuf))
.value_name("PREV_CLSUTERS_DIR")
.value_name("PREV_CLUSTERS_DIR")
.help("Use directory with previously triaged reports for new reports accumulation")
)
.arg(
Expand Down
4 changes: 2 additions & 2 deletions casr/src/bin/casr-libfuzzer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,10 @@ fn main() -> Result<()> {
.arg(
Arg::new("join")
.long("join")
.env("CASR_PREV_CLSUTERS_DIR")
.env("CASR_PREV_CLUSTERS_DIR")
.action(ArgAction::Set)
.value_parser(clap::value_parser!(PathBuf))
.value_name("PREV_CLSUTERS_DIR")
.value_name("PREV_CLUSTERS_DIR")
.help("Use directory with previously triaged reports for new reports accumulation")
)
.arg(
Expand Down
8 changes: 4 additions & 4 deletions docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -457,8 +457,8 @@ Triage crashes found by AFL++/Sharpfuzz
that timeout is disabled [default: 0]
-i, --input <INPUT_DIR> AFL++ work directory
-o, --output <OUTPUT_DIR> Output directory with triaged reports
--join <PREV_CLSUTERS_DIR> Use directory with previously triaged reports for new
reports accumulation [env: CASR_PREV_CLSUTERS_DIR=]
--join <PREV_CLUSTERS_DIR> Use directory with previously triaged reports for new
reports accumulation [env: CASR_PREV_CLUSTERS_DIR=]
-f, --force-remove Remove output project directory if it exists
--ignore-cmdline Force <ARGS> usage to run target instead of searching
for cmdline files in AFL fuzzing directory
Expand Down Expand Up @@ -592,9 +592,9 @@ Triage crashes found by libFuzzer based fuzzer
Directory containing crashes found by libFuzzer [default: .]
-o, --output <OUTPUT_DIR>
Output directory with triaged reports
--join <PREV_CLSUTERS_DIR>
--join <PREV_CLUSTERS_DIR>
Use directory with previously triaged reports for new reports accumulation [env:
CASR_PREV_CLSUTERS_DIR=]
CASR_PREV_CLUSTERS_DIR=]
-f, --force-remove
Remove output project directory if it exists
--no-cluster
Expand Down

0 comments on commit 76c12a2

Please sign in to comment.