aboutsummaryrefslogtreecommitdiffstats
path: root/pkg
diff options
context:
space:
mode:
authorAnton Lindqvist <anton@basename.se>2019-01-21 11:23:19 +0100
committerDmitry Vyukov <dvyukov@google.com>2019-01-21 11:23:19 +0100
commitbadbbeee6945ebd6ec1d1a897aad860b2decefe9 (patch)
treea6b0a8b91d084bb9b8ab3ecbd84602218a17dbcc /pkg
parentfd37a550bbc804dfa7141052976b2057a04d274a (diff)
pkg/host: enable FeatureComparisons on OpenBSD
Diffstat (limited to 'pkg')
-rw-r--r--pkg/host/host_openbsd.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/host/host_openbsd.go b/pkg/host/host_openbsd.go
index 915078300..4e4a509c7 100644
--- a/pkg/host/host_openbsd.go
+++ b/pkg/host/host_openbsd.go
@@ -13,6 +13,7 @@ func isSupported(c *prog.Syscall, target *prog.Target, sandbox string) (bool, st
func init() {
checkFeature[FeatureCoverage] = unconditionallyEnabled
+ checkFeature[FeatureComparisons] = unconditionallyEnabled
checkFeature[FeatureNetworkInjection] = unconditionallyEnabled
checkFeature[FeatureSandboxSetuid] = unconditionallyEnabled
}