legit/unveil_stub.go

19 lines
288 B
Go
Raw Normal View History

2022-12-21 14:17:33 +00:00
//go:build !openbsd
// +build !openbsd
// Stub functions for GOOS that don't support unix.Unveil()
package main
func Unveil(path string, perms string) error {
return nil
}
func UnveilBlock() error {
return nil
}
func UnveilPaths(paths []string, perms string) error {
return nil
}