Skip to content

Commit

Permalink
filenames should not have spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
vanhauser-thc committed Jul 25, 2019
1 parent 6013d20 commit 5969b7c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions afl-fuzz.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand All @@ -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;

}
Expand Down Expand Up @@ -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;

Expand All @@ -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;
}

Expand Down Expand Up @@ -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;

Expand All @@ -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;

}
Expand All @@ -10262,15 +10262,15 @@ 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 {
static u8 tmp[32];
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;
}

Expand Down

0 comments on commit 5969b7c

Please sign in to comment.