removes (indirect) dependencie on the moby/sys/user/userns package, which
was retracted and moved to moby/sys/userns
- full diff: f3cf9359bd...2269acc7a3
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
9 lines
129 B
Go
9 lines
129 B
Go
//go:build linux && gofuzz
|
|
|
|
package userns
|
|
|
|
func FuzzUIDMap(uidmap []byte) int {
|
|
_ = uidMapInUserNS(string(uidmap))
|
|
return 1
|
|
}
|