diff options
author | van Hauser <vh@thc.org> | 2019-07-25 10:19:17 +0200 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2019-07-25 10:19:17 +0200 |
commit | 5969b7cdbc3d494f6cfdb5fdbef3d227af03d8fe (patch) | |
tree | b363b785eac5017f33094933a2485c4e27c14935 /afl-fuzz.c | |
parent | 6013d20aefd3783a70fc958decf3da71821a1490 (diff) | |
download | afl++-5969b7cdbc3d494f6cfdb5fdbef3d227af03d8fe.tar.gz |
filenames should not have spaces
Diffstat (limited to 'afl-fuzz.c')
-rw-r--r-- | afl-fuzz.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/afl-fuzz.c b/afl-fuzz.c index 9a213bb8..8f4e1344 100644 --- a/afl-fuzz.c +++ b/afl-fuzz.c @@ -8451,7 +8451,7 @@ static u8 pilot_fuzzing(char** argv) { if (!splice_cycle) { stage_name = "MOpt-havoc"; - stage_short = "MOpt-havoc"; + stage_short = "MOpt_havoc"; stage_max = (doing_det ? HAVOC_CYCLES_INIT : HAVOC_CYCLES) * perf_score / havoc_div / 100; @@ -8464,7 +8464,7 @@ static u8 pilot_fuzzing(char** argv) { sprintf(tmp, "MOpt-splice %u", splice_cycle); stage_name = tmp; - stage_short = "MOpt-splice"; + stage_short = "MOpt_splice"; stage_max = SPLICE_HAVOC * perf_score / havoc_div / 100; } @@ -8497,7 +8497,7 @@ static u8 pilot_fuzzing(char** argv) { if (!splice_cycle) { stage_name = "MOpt avoc"; - stage_short = "MOpt havoc"; + stage_short = "MOpt_havoc"; stage_max = (doing_det ? HAVOC_CYCLES_INIT : HAVOC_CYCLES) * perf_score / havoc_div / 100; @@ -8507,7 +8507,7 @@ static u8 pilot_fuzzing(char** argv) { perf_score = orig_perf; sprintf(tmp, "MOpt splice %u", splice_cycle); stage_name = tmp; - stage_short = "MOpt splice"; + stage_short = "MOpt_splice"; stage_max = SPLICE_HAVOC * perf_score / havoc_div / 100; } @@ -10223,7 +10223,7 @@ static u8 core_fuzzing(char** argv) { if (!splice_cycle) { stage_name = "MOpt-havoc"; - stage_short = "MOpt-havoc"; + stage_short = "MOpt_havoc"; stage_max = (doing_det ? HAVOC_CYCLES_INIT : HAVOC_CYCLES) * perf_score / havoc_div / 100; @@ -10235,7 +10235,7 @@ static u8 core_fuzzing(char** argv) { sprintf(tmp, "MOpt-core-splice %u", splice_cycle); stage_name = tmp; - stage_short = "MOpt-core-splice"; + stage_short = "MOpt_core_splice"; stage_max = SPLICE_HAVOC * perf_score / havoc_div / 100; } @@ -10262,7 +10262,7 @@ static u8 core_fuzzing(char** argv) { if (!splice_cycle) { stage_name = "MOpt core avoc"; - stage_short = "MOpt core havoc"; + stage_short = "MOpt_core_havoc"; stage_max = (doing_det ? HAVOC_CYCLES_INIT : HAVOC_CYCLES) * perf_score / havoc_div / 100; } else { @@ -10270,7 +10270,7 @@ static u8 core_fuzzing(char** argv) { perf_score = orig_perf; sprintf(tmp, "MOpt core splice %u", splice_cycle); stage_name = tmp; - stage_short = "MOpt core splice"; + stage_short = "MOpt_core_splice"; stage_max = SPLICE_HAVOC * perf_score / havoc_div / 100; } |