about summary refs log tree commit diff
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2019-06-22 19:03:15 +0200
committervan Hauser <vh@thc.org>2019-06-22 19:03:15 +0200
commit421edce6236ffec860fe554d6b41266d8f3ff77d (patch)
treec61ed2bfb686cdf64aeed08b0cce60a9e39894dc
parent549b83504fad02e12fe7f6068173479e7063ee99 (diff)
downloadafl++-421edce6236ffec860fe554d6b41266d8f3ff77d.tar.gz
friendly power schedule names
-rw-r--r--afl-fuzz.c2
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");