proxy.dropPrivilege() doesn't return on success

This commit is contained in:
Frank Denis 2020-04-26 14:49:43 +02:00
parent 3c510b74bb
commit 4029d3d4f3
2 changed files with 1 additions and 3 deletions

View file

@ -561,6 +561,7 @@ func ConfigLoad(proxy *Proxy, flags *ConfigFlags) error {
// if 'userName' is set and we are the parent process drop privilege and exit
if len(proxy.userName) > 0 && !proxy.child {
proxy.dropPrivilege(proxy.userName, FileDescriptors)
dlog.Fatal("Dropping privileges is not supporting on this operating system. Unset `user_name` in the configuration file.")
}
if err := proxy.SystemDListeners(); err != nil {
dlog.Fatal(err)

View file

@ -2,10 +2,7 @@ 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")
}