diff options
author | 2022-07-13 01:18:53 +0000 | |
---|---|---|
committer | 2022-07-13 01:18:53 +0000 | |
commit | ee81400fbbc9f7f10c67bc0f670b0cf41113d6ce (patch) | |
tree | 932ae919e67bb4a35646126f9779a0ae2ca78a24 /fuzz | |
parent | 14058f2c4a3a6a5891b578a27871c33d48d2c3a2 (diff) | |
parent | 46ab891c1d5a1ec403802d91d20a07613b68a749 (diff) |
Merge "Fix name of new param in cc_fuzz"
Diffstat (limited to 'fuzz')
-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 8e54d80ab..46b254f0b 100644 --- a/fuzz/fuzz_common.go +++ b/fuzz/fuzz_common.go @@ -106,7 +106,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 |