Dropping privileges doesn't work reliably on MacOS

This commit is contained in:
Frank Denis 2020-04-20 11:50:27 +02:00
parent abfd195e51
commit b6b7ed3a67
2 changed files with 12 additions and 1 deletions

View file

@ -0,0 +1,11 @@
package main
import (
"os"
"github.com/jedisct1/dlog"
)
func (proxy *Proxy) dropPrivilege(userStr string, fds []*os.File) {
dlog.Warn("Dropping privileges doesn't work reliably on MacOS")
}

View file

@ -1,4 +1,4 @@
// +build !windows,!linux
// +build !windows,!linux,!darwin
package main