diff options
author | vanhauser-thc <vh@thc.org> | 2024-02-04 16:16:32 +0100 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2024-02-04 16:16:32 +0100 |
commit | 6d209ce045c651089e4e55d7bb9995b496a378c0 (patch) | |
tree | 9e58fec192bd67bab1cbe06bc2550fcc8a31b490 /src/afl-fuzz-stats.c | |
parent | 34a3060b0fee900331decce0bae55d4caefafc01 (diff) | |
download | afl++-6d209ce045c651089e4e55d7bb9995b496a378c0.tar.gz |
fix -z
Diffstat (limited to 'src/afl-fuzz-stats.c')
-rw-r--r-- | src/afl-fuzz-stats.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/afl-fuzz-stats.c b/src/afl-fuzz-stats.c index 76577081..b6900506 100644 --- a/src/afl-fuzz-stats.c +++ b/src/afl-fuzz-stats.c @@ -1112,7 +1112,7 @@ void show_stats_normal(afl_state_t *afl) { } else if (likely(afl->skip_deterministic)) { - strcpy(tmp, "disabled (default, enable with -D)"); + strcpy(tmp, "disabled (-z switch used)"); } else { |