blob: de2c2b1a14163b23b39858bbacb4f2ff0bce7ebf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// +build !openbsd
package lynx
// UnveilPaths takes a map of path, permission & unveils them one by
// one, it does nothing on non OpenBSD systems.
func UnveilPaths(_ map[string]string) error {
return nil
}
// UnveilPathsStrict takes a map of path, permission & unveils them
// one by one, it does nothing on non OpenBSD systems.
func UnveilPathsStrict(_ map[string]string) error {
return nil
}
|