diff options
author | van Hauser <vh@thc.org> | 2020-12-20 14:30:06 +0100 |
---|---|---|
committer | van Hauser <vh@thc.org> | 2020-12-20 14:30:06 +0100 |
commit | 98ee17bc47b1f1d4664be9955a72727fff8e51fa (patch) | |
tree | 5c49dd81c9ab6c47538350b53d8b1fd11abe3f6c /include/config.h | |
parent | a6116ed533e5db74d654bedda9e747f87cbd8494 (diff) | |
download | afl++-98ee17bc47b1f1d4664be9955a72727fff8e51fa.tar.gz |
fix endless loop in afl-cc allow/blocklists starting a line with a comment
Diffstat (limited to 'include/config.h')
-rw-r--r-- | include/config.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/include/config.h b/include/config.h index d57ef223..e8a49270 100644 --- a/include/config.h +++ b/include/config.h @@ -37,14 +37,14 @@ ******************************************************/ /* console output colors: There are three ways to configure its behavior - * 1. default: colored outputs fixed on: defined USE_COLOR && defined ALWAYS_COLORED - * The env var. AFL_NO_COLOR will have no effect + * 1. default: colored outputs fixed on: defined USE_COLOR && defined + * ALWAYS_COLORED The env var. AFL_NO_COLOR will have no effect * 2. defined USE_COLOR && !defined ALWAYS_COLORED * -> depending on env var AFL_NO_COLOR=1 colors can be switched off * at run-time. Default is to use colors. * 3. colored outputs fixed off: !defined USE_COLOR * The env var. AFL_NO_COLOR will have no effect -*/ + */ /* Comment out to disable terminal colors (note that this makes afl-analyze a lot less nice): */ @@ -52,9 +52,10 @@ #define USE_COLOR #ifdef USE_COLOR -/* Comment in to always enable terminal colors */ -/* Comment out to enable runtime controlled terminal colors via AFL_NO_COLOR */ -#define ALWAYS_COLORED 1 + /* Comment in to always enable terminal colors */ + /* Comment out to enable runtime controlled terminal colors via AFL_NO_COLOR + */ + #define ALWAYS_COLORED 1 #endif /* StatsD config |