diff options
author | van Hauser <vh@thc.org> | 2020-12-11 11:19:26 +0100 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-12-11 11:19:26 +0100 |
commit | 2bf68a0bf45fb2bb3bc0f574f20959a62c9f8239 (patch) | |
tree | 9452e9bc752dccbec05ac87928e2cf32a1bafd5a /src/afl-fuzz.c | |
parent | 8a1acac559edb66e8e246e73508cec541a9fc530 (diff) | |
download | afl++-2bf68a0bf45fb2bb3bc0f574f20959a62c9f8239.tar.gz |
fix MMAP
Diffstat (limited to 'src/afl-fuzz.c')
-rw-r--r-- | src/afl-fuzz.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/afl-fuzz.c b/src/afl-fuzz.c index bbe6aec6..391d4c4f 100644 --- a/src/afl-fuzz.c +++ b/src/afl-fuzz.c @@ -230,6 +230,12 @@ static void usage(u8 *argv0, int more_help) { SAYF("Compiled without python module support\n"); #endif +#ifdef USEMMAP + SAYF("Compiled with shm_open support.\n"); +#else + SAYF("Compiled with shmat support.\n"); +#endif + #ifdef ASAN_BUILD SAYF("Compiled with ASAN_BUILD\n\n"); #endif @@ -254,7 +260,7 @@ static void usage(u8 *argv0, int more_help) { SAYF("Compiled with _AFL_DOCUMENT_MUTATIONS\n\n"); #endif - SAYF("For additional help please consult %s/README.md\n\n", doc_path); + SAYF("For additional help please consult %s/README.md :)\n\n", doc_path); exit(1); #undef PHYTON_SUPPORT |