Using proper value for SYS_SETNS

https://github.com/docker/libcontainer/blob/master/system/setns_linux.go#L17

For information: 374 is `sendmmsg`

Now passing tests on **armv7**

```console
$ uname -a
Linux docker-builder-34 4.0.5-235 #1 SMP Fri Jun 19 08:56:44 UTC 2015 armv7l armv7l armv7l GNU/Linux
$ go test github.com/vishvananda/netns
PASS
ok  	github.com/vishvananda/netns	0.013s
```

Should fix https://github.com/docker/docker/issues/14184
This commit is contained in:
Manfred Touron 2015-06-30 22:23:27 +02:00
parent b7a04d6db3
commit cbbe6847e6
1 changed files with 1 additions and 1 deletions

View File

@ -3,5 +3,5 @@
package netns
const (
SYS_SETNS = 374
SYS_SETNS = 375
)