mirror of
https://github.com/junegunn/fzf.git
synced 2025-07-27 02:02:00 -07:00
- src/protector/protector_openbsd.go: add inet permissions for pledge - fix #3481 Signed-off-by: Laurent Cheylus <foxy@free.fr>
11 lines
209 B
Go
11 lines
209 B
Go
//go:build openbsd
|
|
|
|
package protector
|
|
|
|
import "golang.org/x/sys/unix"
|
|
|
|
// Protect calls OS specific protections like pledge on OpenBSD
|
|
func Protect() {
|
|
unix.PledgePromises("stdio rpath tty proc exec inet")
|
|
}
|