This commit is contained in:
Frank Denis 2018-10-05 01:06:44 +02:00
parent 16f1f8b71d
commit b81a72cc3e
2 changed files with 3 additions and 3 deletions

View File

@ -85,7 +85,7 @@ func (proxy *Proxy) dropPrivilege(userStr string, fds []*os.File) {
dlog.Fatal("Unable to reassign descriptor")
}
}
err := syscall.Exec(path, args, os.Environ())
err = syscall.Exec(path, args, os.Environ())
dlog.Fatalf("Unable to reexecute [%s]: [%s]", path, err)
os.Exit(1)
}

View File

@ -82,7 +82,7 @@ func (proxy *Proxy) dropPrivilege(userStr string, fds []*os.File) {
dlog.Fatal("Unable to reassign descriptor")
}
}
syscall.Exec(path, args, os.Environ())
dlog.Fatalf("Unable to reexecute [%s]", path)
err = syscall.Exec(path, args, os.Environ())
dlog.Fatalf("Unable to reexecute [%s]: [%s]", path, err)
os.Exit(1)
}