From 421edce6236ffec860fe554d6b41266d8f3ff77d Mon Sep 17 00:00:00 2001 From: van Hauser Date: Sat, 22 Jun 2019 19:03:15 +0200 Subject: friendly power schedule names --- afl-fuzz.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'afl-fuzz.c') 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"); -- cgit 1.4.1