diff options
author | vanhauser-thc <vh@thc.org> | 2023-06-21 09:57:24 +0200 |
---|---|---|
committer | vanhauser-thc <vh@thc.org> | 2023-06-21 09:57:24 +0200 |
commit | 936b6dcb5d7a93d2aa211d0812fd26ba0b2c7d3c (patch) | |
tree | 7bb7d886263b6f7db7964b0955cc023baefefc5b | |
parent | 51ab51ca278dafacfca1131fd339529e9d7dce08 (diff) | |
download | afl++-936b6dcb5d7a93d2aa211d0812fd26ba0b2c7d3c.tar.gz |
nits
-rwxr-xr-x | afl-cmin | 2 | ||||
-rw-r--r-- | src/afl-fuzz-stats.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/afl-cmin b/afl-cmin index de76caf8..3e37dbdb 100755 --- a/afl-cmin +++ b/afl-cmin @@ -513,7 +513,7 @@ BEGIN { if (threads > 1) { - print "[*] Creating " threads " parallel tasks with about " inputsperfile " each." + print "[*] Creating " threads " parallel tasks with about " inputsperfile " items each." for (i = 1; i <= threads; i++) { if (!stdin_file) { diff --git a/src/afl-fuzz-stats.c b/src/afl-fuzz-stats.c index 389b82fc..4013370d 100644 --- a/src/afl-fuzz-stats.c +++ b/src/afl-fuzz-stats.c @@ -2350,6 +2350,8 @@ void show_init_stats(afl_state_t *afl) { afl->timeout_given = 1; + } else { + ACTF("-t option specified. We'll use an exec timeout of %u ms.", afl->fsrv.exec_tmout); |