diff --git a/dnscrypt-proxy/config.go b/dnscrypt-proxy/config.go index c1c01148..0d85865a 100644 --- a/dnscrypt-proxy/config.go +++ b/dnscrypt-proxy/config.go @@ -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) diff --git a/dnscrypt-proxy/privilege_darwin.go b/dnscrypt-proxy/privilege_darwin.go index 2279e658..700f734e 100644 --- a/dnscrypt-proxy/privilege_darwin.go +++ b/dnscrypt-proxy/privilege_darwin.go @@ -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") }