mirror of
https://github.com/mjl-/mox.git
synced 2024-12-26 16:33:47 +03:00
4b8b53e776
found with "make buildall", it was broken since the change for reusable components.
9 lines
259 B
Go
9 lines
259 B
Go
package mox
|
|
|
|
// Fork and exec as unprivileged user.
|
|
//
|
|
// Not implemented yet on windows. Would need to understand its security model
|
|
// first.
|
|
func ForkExecUnprivileged() {
|
|
pkglog.Fatal("fork and exec to unprivileged user not yet implemented on windows")
|
|
}
|