summaryrefslogtreecommitdiff
path: root/report.c
diff options
context:
space:
mode:
authorJagger <robert@swiecki.net>2016-03-21 23:24:05 +0100
committerJagger <robert@swiecki.net>2016-03-21 23:24:05 +0100
commit247c3b4227ea3cbb3f276b57b593a343b6add568 (patch)
tree90ca3604bdaa76d02495ddde09d378ae2a55a976 /report.c
parent2381ef48576133fc0e8a7e89b0228d36a86b47fc (diff)
downloadhonggfuzz-247c3b4227ea3cbb3f276b57b593a343b6add568.tar.gz
Move linux hfuzz_t code to linux struct
Diffstat (limited to 'report.c')
-rw-r--r--report.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/report.c b/report.c
index c0029711..d31b1400 100644
--- a/report.c
+++ b/report.c
@@ -109,10 +109,10 @@ void report_Report(honggfuzz_t * hfuzz, char *s)
hfuzz->externalCommand == NULL ? "NULL" : hfuzz->externalCommand,
hfuzz->fuzzStdin ? "TRUE" : "FALSE",
hfuzz->tmOut,
- hfuzz->ignoreAddr,
+ hfuzz->linux.ignoreAddr,
hfuzz->asLimit,
- hfuzz->pid, hfuzz->pidCmd,
- hfuzz->dictionaryFile == NULL ? "NULL" : hfuzz->dictionaryFile);
+ hfuzz->linux.pid,
+ hfuzz->linux.pidCmd, hfuzz->dictionaryFile == NULL ? "NULL" : hfuzz->dictionaryFile);
#if defined(_HF_ARCH_LINUX)
report_printdynFileMethod(hfuzz);