pkg/ns: use correct syscall number on arm

This commit is contained in:
Angus Lees
2016-05-13 17:18:39 +10:00
committed by Stefan Junker
parent fc229c5090
commit 5978cf8b88

View File

@ -24,7 +24,7 @@ import (
var setNsMap = map[string]uintptr{ var setNsMap = map[string]uintptr{
"386": 346, "386": 346,
"amd64": 308, "amd64": 308,
"arm": 374, "arm": 375,
} }
// SetNS sets the network namespace on a target file. // SetNS sets the network namespace on a target file.