mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-04 13:47:39 +03:00
Add unix to the pledge promises
Required for writing to syslog. Reported by @eau-u4f, thanks!
This commit is contained in:
parent
a24cb0d900
commit
7734cc9d2a
1 changed files with 2 additions and 2 deletions
|
@ -7,9 +7,9 @@ import (
|
|||
)
|
||||
|
||||
func Pledge() {
|
||||
unix.Pledge("stdio rpath wpath cpath tmppath inet fattr flock dns getpw sendfd recvfd proc exec id", nil)
|
||||
unix.Pledge("stdio rpath wpath cpath tmppath inet unix fattr flock dns getpw sendfd recvfd proc exec id", nil)
|
||||
}
|
||||
|
||||
func PledgeChild() {
|
||||
unix.Pledge("stdio rpath wpath cpath tmppath inet fattr flock dns recvfd", nil)
|
||||
unix.Pledge("stdio rpath wpath cpath tmppath inet unix fattr flock dns recvfd", nil)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue