about summary refs log tree commit diff
path: root/src/afl-fuzz.c
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2022-04-03 09:31:23 +0200
committerGitHub <noreply@github.com>2022-04-03 09:31:23 +0200
commitef5543680aea31e193ea5794c023dac8cc3ca7d6 (patch)
tree8dc251d65376b47ce17121bdf328fc79c68243f2 /src/afl-fuzz.c
parentc4363dd8b3d19a3e4bab8bc1fca1708ae2ff7899 (diff)
parent26f3ec28eef78f3a57bc3c308de9a3105cb63538 (diff)
downloadafl++-ef5543680aea31e193ea5794c023dac8cc3ca7d6.tar.gz
Merge pull request #1374 from CarloMara/stable
Add new mode to AFLplusplus
Diffstat (limited to 'src/afl-fuzz.c')
-rw-r--r--src/afl-fuzz.c13
1 files changed, 11 insertions, 2 deletions
diff --git a/src/afl-fuzz.c b/src/afl-fuzz.c
index c5333056..cc1240e7 100644
--- a/src/afl-fuzz.c
+++ b/src/afl-fuzz.c
@@ -2528,8 +2528,17 @@ stop_fuzzing:
   write_bitmap(afl);
   save_auto(afl);
 
-  SAYF(CURSOR_SHOW cLRD "\n\n+++ Testing aborted %s +++\n" cRST,
-       afl->stop_soon == 2 ? "programmatically" : "by user");
+  if (afl->afl_env.afl_pizza_mode) {
+
+    SAYF(CURSOR_SHOW cLRD "\n\n+++ Baking aborted %s +++\n" cRST,
+         afl->stop_soon == 2 ? "programmatically" : "by the chef");
+
+  } else {
+
+    SAYF(CURSOR_SHOW cLRD "\n\n+++ Testing aborted %s +++\n" cRST,
+         afl->stop_soon == 2 ? "programmatically" : "by user");
+
+  }
 
   if (afl->most_time_key == 2) {