Vendor in latest go-selinux and containers/storage

skopeo is failing to build now on 32 bit systems.  go-selinux update
should fix this.  Also container/storage has had some cleanup fixes
to devicemapper support.

Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
This commit is contained in:
Daniel J Walsh
2018-05-22 10:47:33 -04:00
parent 63569fcd63
commit 976d57ea45
13 changed files with 1481 additions and 6 deletions

View File

@@ -106,7 +106,7 @@ func verifySELinuxfsMount(mnt string) bool {
}
return false
}
if buf.Type != selinuxfsMagic {
if uint32(buf.Type) != uint32(selinuxfsMagic) {
return false
}
if (buf.Flags & stRdOnly) != 0 {