This commit is contained in:
parent
16f1f8b71d
commit
b81a72cc3e
|
@ -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)
|
||||
}
|
||||
|
|
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue