diff options
author | richinseattle@gmail.com <richinseattle@gmail.com> | 2021-03-19 14:25:55 -0700 |
---|---|---|
committer | richinseattle@gmail.com <richinseattle@gmail.com> | 2021-03-19 14:25:55 -0700 |
commit | 7e67a735e6a30550288fc8c35541f91ea4cf3de3 (patch) | |
tree | f30560f7dba7c3f888ca0d55b0f6e5b101813279 /src/afl-fuzz-stats.c | |
parent | c397becd81229d71b55acf89a31710bead3707aa (diff) | |
download | afl++-7e67a735e6a30550288fc8c35541f91ea4cf3de3.tar.gz |
update plot_data timestamps to be relative
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 99059a2d..3e237003 100644 --- a/src/afl-fuzz-stats.c +++ b/src/afl-fuzz-stats.c @@ -391,7 +391,7 @@ void maybe_update_plot_file(afl_state_t *afl, u32 t_bytes, double bitmap_cvg, fprintf(afl->fsrv.plot_file, "%llu, %llu, %u, %u, %u, %u, %0.02f%%, %llu, %llu, %u, %0.02f, %llu, " "%u\n", - get_cur_time() / 1000, afl->queue_cycle - 1, afl->current_entry, + (afl->prev_run_time + get_cur_time() - afl->start_time), afl->queue_cycle - 1, afl->current_entry, afl->queued_paths, afl->pending_not_fuzzed, afl->pending_favored, bitmap_cvg, afl->unique_crashes, afl->unique_hangs, afl->max_depth, eps, afl->plot_prev_ed, t_bytes); /* ignore errors */ |