diff options
| -rw-r--r-- | helper/bwrap/seccomp.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/helper/bwrap/seccomp.go b/helper/bwrap/seccomp.go index d6f34dfe..1173a76c 100644 --- a/helper/bwrap/seccomp.go +++ b/helper/bwrap/seccomp.go @@ -6,7 +6,6 @@ import ( "git.gensokyo.uk/security/fortify/helper/proc" "git.gensokyo.uk/security/fortify/helper/seccomp" - "git.gensokyo.uk/security/fortify/internal/fmsg" ) type SyscallPolicy struct { @@ -56,7 +55,7 @@ func (c *Config) seccompArgs() FDBuilder { for _, opt := range optCond { if opt.v { opts |= opt.o - if fmsg.Verbose() { + if seccomp.CPrintln != nil { optd = append(optd, opt.d) } } |
