mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-04 13:47:39 +03:00
proxy.dropPrivilege() doesn't return on success
This commit is contained in:
parent
3c510b74bb
commit
4029d3d4f3
2 changed files with 1 additions and 3 deletions
|
@ -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 'userName' is set and we are the parent process drop privilege and exit
|
||||||
if len(proxy.userName) > 0 && !proxy.child {
|
if len(proxy.userName) > 0 && !proxy.child {
|
||||||
proxy.dropPrivilege(proxy.userName, FileDescriptors)
|
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 {
|
if err := proxy.SystemDListeners(); err != nil {
|
||||||
dlog.Fatal(err)
|
dlog.Fatal(err)
|
||||||
|
|
|
@ -2,10 +2,7 @@ package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"os"
|
"os"
|
||||||
|
|
||||||
"github.com/jedisct1/dlog"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func (proxy *Proxy) dropPrivilege(userStr string, fds []*os.File) {
|
func (proxy *Proxy) dropPrivilege(userStr string, fds []*os.File) {
|
||||||
dlog.Warn("Dropping privileges doesn't work reliably on MacOS")
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue