aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2020-02-03 16:10:16 +0100
committervan Hauser <vh@thc.org>2020-02-03 16:10:16 +0100
commit542bea37fb79497ac3f4ea3411b2af4e5099c864 (patch)
tree988cc7ffc596d68d073af402e6511856698998ad /src
parent1d8e772f6c3bd542a2fc68835befde246b0bbef6 (diff)
downloadafl++-542bea37fb79497ac3f4ea3411b2af4e5099c864.tar.gz
fix MDs
Diffstat (limited to 'src')
-rw-r--r--src/afl-forkserver.c4
-rw-r--r--src/afl-fuzz-cmplog.c4
-rw-r--r--src/afl-fuzz-init.c2
-rw-r--r--src/afl-fuzz-stats.c6
-rw-r--r--src/afl-fuzz.c4
5 files changed, 10 insertions, 10 deletions
diff --git a/src/afl-forkserver.c b/src/afl-forkserver.c
index 77e1d648..b1943633 100644
--- a/src/afl-forkserver.c
+++ b/src/afl-forkserver.c
@@ -332,7 +332,7 @@ void init_forkserver(char **argv) {
"have a\n"
" restrictive memory limit configured, this is expected; please "
"read\n"
- " %s/notes_for_asan.txt for help.\n",
+ " %s/notes_for_asan.md for help.\n",
doc_path);
} else if (!mem_limit) {
@@ -408,7 +408,7 @@ void init_forkserver(char **argv) {
"with ASAN and\n"
" you have a restrictive memory limit configured, this is "
"expected; please\n"
- " read %s/notes_for_asan.txt for help.\n",
+ " read %s/notes_for_asan.md for help.\n",
doc_path);
} else if (!mem_limit) {
diff --git a/src/afl-fuzz-cmplog.c b/src/afl-fuzz-cmplog.c
index 5906756d..92bac4ab 100644
--- a/src/afl-fuzz-cmplog.c
+++ b/src/afl-fuzz-cmplog.c
@@ -217,7 +217,7 @@ void init_cmplog_forkserver(char** argv) {
"have a\n"
" restrictive memory limit configured, this is expected; please "
"read\n"
- " %s/notes_for_asan.txt for help.\n",
+ " %s/notes_for_asan.md for help.\n",
doc_path);
} else if (!mem_limit) {
@@ -293,7 +293,7 @@ void init_cmplog_forkserver(char** argv) {
"with ASAN and\n"
" you have a restrictive memory limit configured, this is "
"expected; please\n"
- " read %s/notes_for_asan.txt for help.\n",
+ " read %s/notes_for_asan.md for help.\n",
doc_path);
} else if (!mem_limit) {
diff --git a/src/afl-fuzz-init.c b/src/afl-fuzz-init.c
index e39480da..9265e4a5 100644
--- a/src/afl-fuzz-init.c
+++ b/src/afl-fuzz-init.c
@@ -601,7 +601,7 @@ void perform_dry_run(char** argv) {
"quickly\n"
" estimate the required amount of virtual memory for the "
"binary. Also,\n"
- " if you are using ASAN, see %s/notes_for_asan.txt.\n\n"
+ " if you are using ASAN, see %s/notes_for_asan.md.\n\n"
MSG_FORK_ON_APPLE
diff --git a/src/afl-fuzz-stats.c b/src/afl-fuzz-stats.c
index be065647..9dc4b917 100644
--- a/src/afl-fuzz-stats.c
+++ b/src/afl-fuzz-stats.c
@@ -747,7 +747,7 @@ void show_init_stats(void) {
SAYF("\n");
if (avg_us > ((qemu_mode || unicorn_mode) ? 50000 : 10000))
- WARNF(cLRD "The target binary is pretty slow! See %s/perf_tips.txt.",
+ WARNF(cLRD "The target binary is pretty slow! See %s/perf_tips.md.",
doc_path);
/* Let's keep things moving with slow binaries. */
@@ -762,10 +762,10 @@ void show_init_stats(void) {
if (!resuming_fuzz) {
if (max_len > 50 * 1024)
- WARNF(cLRD "Some test cases are huge (%s) - see %s/perf_tips.txt!",
+ WARNF(cLRD "Some test cases are huge (%s) - see %s/perf_tips.md!",
DMS(max_len), doc_path);
else if (max_len > 10 * 1024)
- WARNF("Some test cases are big (%s) - see %s/perf_tips.txt.",
+ WARNF("Some test cases are big (%s) - see %s/perf_tips.md.",
DMS(max_len), doc_path);
if (useless_at_start && !in_bitmap)
diff --git a/src/afl-fuzz.c b/src/afl-fuzz.c
index 4957a8bf..8833244d 100644
--- a/src/afl-fuzz.c
+++ b/src/afl-fuzz.c
@@ -96,7 +96,7 @@ static void usage(u8* argv0) {
"score.\n"
" <explore (default), fast, coe, lin, quad, or "
"exploit>\n"
- " see docs/power_schedules.txt\n"
+ " see docs/power_schedules.md\n"
" -f file - location read by the fuzzed program (stdin)\n"
" -t msec - timeout for each run (auto-scaled, 50-%d ms)\n"
" -m megs - memory limit for child process (%d MB)\n"
@@ -145,7 +145,7 @@ static void usage(u8* argv0) {
argv0, EXEC_TIMEOUT, MEM_LIMIT);
#ifdef USE_PYTHON
- SAYF("Compiled with %s module support, see docs/python_mutators.txt\n",
+ SAYF("Compiled with %s module support, see docs/python_mutators.md\n",
(char*)PYTHON_VERSION);
#endif