mox/mox-/forkexec_windows.go
Mechiel Lukkien 4b8b53e776
fix build for windows
found with "make buildall", it was broken since the change for reusable components.
2024-01-01 16:08:50 +01:00

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")
}