mirror of
https://github.com/junegunn/fzf.git
synced 2025-07-31 04:02:01 -07:00
- src/protector/protector_openbsd.go: add tmppath for pledge permissions - fix junegunn/fzf#3511 Signed-off-by: Laurent Cheylus <foxy@free.fr>
11 lines
217 B
Go
11 lines
217 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 tmppath")
|
|
}
|