filenames should not have spaces

This commit is contained in:
van Hauser 2019-07-25 10:19:17 +02:00
parent 6013d20aef
commit 5969b7cdbc

View File

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