diff options
author | hexcoder- <heiko@hexco.de> | 2020-04-08 17:53:25 +0000 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-04-09 10:23:37 +0200 |
commit | ae05f5c4b0611fe05a38a0c293c2d251085f510f (patch) | |
tree | 86d53da4fd7e295b29b8550445bb1f88948eb6c5 /src/afl-fuzz.c | |
parent | d397bba6b2d59857e2f57abf09a4aed1578f7ffd (diff) | |
download | afl++-ae05f5c4b0611fe05a38a0c293c2d251085f510f.tar.gz |
afl-fuzz: add usage info when no python support is there, use it in test.sh
Diffstat (limited to 'src/afl-fuzz.c')
-rw-r--r-- | src/afl-fuzz.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/afl-fuzz.c b/src/afl-fuzz.c index e348f758..a4c5cfb5 100644 --- a/src/afl-fuzz.c +++ b/src/afl-fuzz.c @@ -198,6 +198,8 @@ static void usage(afl_state_t *afl, u8 *argv0, int more_help) { #ifdef USE_PYTHON SAYF("Compiled with %s module support, see docs/custom_mutator.md\n", (char *)PYTHON_VERSION); +#else + SAYF("Compiled without python module support\n"); #endif SAYF("For additional help please consult %s/README.md\n\n", doc_path); |