diff options
author | 2022-07-12 16:06:50 -0700 | |
---|---|---|
committer | 2022-07-12 16:06:50 -0700 | |
commit | 46ab891c1d5a1ec403802d91d20a07613b68a749 (patch) | |
tree | 9ba44a4aba773a829843a3e548764570fc4e3464 /fuzz/fuzz_common.go | |
parent | 7e0b4bae8a4af77f15c5b690e1fe7e27c1086453 (diff) |
Fix name of new param in cc_fuzz
Test: m example_fuzzer
Change-Id: I900a0eaf061ed22a0452eba06cd83b52003a3ea9
Diffstat (limited to 'fuzz/fuzz_common.go')
-rw-r--r-- | fuzz/fuzz_common.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fuzz/fuzz_common.go b/fuzz/fuzz_common.go index 631380cc0..1a87b30d4 100644 --- a/fuzz/fuzz_common.go +++ b/fuzz/fuzz_common.go @@ -108,7 +108,7 @@ type FuzzConfig struct { // Can this code be triggered remotely or only locally. Remotely_accessible bool `json:"remotely_accessible,omitempty"` // Is the fuzzed code host only, i.e. test frameworks or support utilities. - Host_only bool `json:"access_vector,omitempty"` + Host_only bool `json:"host_only,omitempty"` // Can third party/untrusted apps supply data to fuzzed code. Untrusted_data bool `json:"untrusted_data,omitempty"` // Is the code being fuzzed in a privileged, constrained or any other |