block the usage of mopt with optionals mutators (redqueen/radamsa/etc...)

This commit is contained in:
Andrea Fioraldi
2020-02-21 16:50:06 +01:00
parent 8904200d48
commit 7323833888
9 changed files with 83 additions and 61 deletions

View File

@ -154,8 +154,7 @@ void init_forkserver(char **argv) {
int status;
s32 rlen;
if (!getenv("AFL_QUIET"))
ACTF("Spinning up the fork server...");
if (!getenv("AFL_QUIET")) ACTF("Spinning up the fork server...");
if (pipe(st_pipe) || pipe(ctl_pipe)) PFATAL("pipe() failed");
@ -312,8 +311,7 @@ void init_forkserver(char **argv) {
if (rlen == 4) {
if (!getenv("AFL_QUIET"))
OKF("All right - fork server is up.");
if (!getenv("AFL_QUIET")) OKF("All right - fork server is up.");
return;
}