about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2022-09-20 17:37:20 +0200
committerGitHub <noreply@github.com>2022-09-20 17:37:20 +0200
commitad4b7274766418d2006177edebf0d242b49c5fef (patch)
treedeaa5f180c4e739df3f7a499632f9f96e8c687c7 /src
parentbadd9694d25ac5320b5f6d4e2ee182f59649a821 (diff)
parent41fe8b6ab9fe3d3f00717b7d7f3de072550f265c (diff)
downloadafl++-ad4b7274766418d2006177edebf0d242b49c5fef.tar.gz
Merge pull request #1527 from AFLplusplus/dev 4.03c
push to stable
Diffstat (limited to 'src')
-rw-r--r--src/afl-fuzz-stats.c14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/afl-fuzz-stats.c b/src/afl-fuzz-stats.c
index 51e292d8..713f3a3c 100644
--- a/src/afl-fuzz-stats.c
+++ b/src/afl-fuzz-stats.c
@@ -2105,7 +2105,9 @@ void show_init_stats(afl_state_t *afl) {
                     ? 50000
                     : 10000)) {
 
-    WARNF(cLRD "The target binary is pretty slow! See %s/perf_tips.md.",
+    WARNF(cLRD
+          "The target binary is pretty slow! See "
+          "%s/fuzzing_in_depth.md#i-improve-the-speed",
           doc_path);
 
   }
@@ -2134,13 +2136,17 @@ void show_init_stats(afl_state_t *afl) {
 
     if (max_len > 50 * 1024) {
 
-      WARNF(cLRD "Some test cases are huge (%s) - see %s/perf_tips.md!",
+      WARNF(cLRD
+            "Some test cases are huge (%s) - see "
+            "%s/fuzzing_in_depth.md#i-improve-the-speed",
             stringify_mem_size(IB(0), max_len), doc_path);
 
     } else if (max_len > 10 * 1024) {
 
-      WARNF("Some test cases are big (%s) - see %s/perf_tips.md.",
-            stringify_mem_size(IB(0), max_len), doc_path);
+      WARNF(
+          "Some test cases are big (%s) - see "
+          "%s/fuzzing_in_depth.md#i-improve-the-speed",
+          stringify_mem_size(IB(0), max_len), doc_path);
 
     }