summaryrefslogtreecommitdiff
path: root/report.c
diff options
context:
space:
mode:
authorRobert Swiecki <robert@swiecki.net>2017-11-04 00:57:47 +0100
committerRobert Swiecki <robert@swiecki.net>2017-11-04 00:57:47 +0100
commit10e9356ae3ed7cfe573739d0245c048f7010181e (patch)
treeb52fa43e8fefa003268e938edf3445ddc4793860 /report.c
parent487c61d5590aacaa5d26cf6220301ae96cee98e8 (diff)
downloadhonggfuzz-10e9356ae3ed7cfe573739d0245c048f7010181e.tar.gz
mangle: introduce mutationsPerRun instead of flipRate
Diffstat (limited to 'report.c')
-rw-r--r--report.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/report.c b/report.c
index 818f1b16..b866ec25 100644
--- a/report.c
+++ b/report.c
@@ -95,16 +95,16 @@ void report_Report(honggfuzz_t* hfuzz, char* s)
"TIME: %s\n"
"=====================================================================\n"
"FUZZER ARGS:\n"
- " flipRate : %lf\n"
- " externalCmd : %s\n"
- " fuzzStdin : %s\n"
- " timeout : %ld (sec)\n"
- " ignoreAddr : %p\n"
- " memoryLimit : %" PRIu64 " (MiB)\n"
- " targetPid : %d\n"
- " targetCmd : %s\n"
- " wordlistFile : %s\n",
- localtmstr, hfuzz->origFlipRate,
+ " mutationsPerRun : %u\n"
+ " externalCmd : %s\n"
+ " fuzzStdin : %s\n"
+ " timeout : %ld (sec)\n"
+ " ignoreAddr : %p\n"
+ " memoryLimit : %" PRIu64 " (MiB)\n"
+ " targetPid : %d\n"
+ " targetCmd : %s\n"
+ " wordlistFile : %s\n",
+ localtmstr, hfuzz->mutationsPerRun,
hfuzz->externalCommand == NULL ? "NULL" : hfuzz->externalCommand,
hfuzz->fuzzStdin ? "TRUE" : "FALSE", hfuzz->tmOut, hfuzz->linux.ignoreAddr, hfuzz->asLimit,
hfuzz->linux.pid, hfuzz->linux.pidCmd,