diff options
-rw-r--r-- | afl-fuzz.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/afl-fuzz.c b/afl-fuzz.c index 5a7ee0a2..cda2434a 100644 --- a/afl-fuzz.c +++ b/afl-fuzz.c @@ -8348,7 +8348,7 @@ int main(int argc, char** argv) { schedule = LIN; } else if (!stricmp(optarg, "quad")) { schedule = QUAD; - } else if (!stricmp(optarg, "explore")) { + } else if (!stricmp(optarg, "explore") || !stricmp(optarg, "default") || !stricmp(optarg, "normal") || !stricmp(optarg, "afl")) { schedule = EXPLORE; } else { FATAL("Unknown -p power schedule"); |