Bump github.com/opencontainers/selinux from 1.3.2 to 1.3.3

Bumps [github.com/opencontainers/selinux](https://github.com/opencontainers/selinux) from 1.3.2 to 1.3.3.
- [Release notes](https://github.com/opencontainers/selinux/releases)
- [Commits](https://github.com/opencontainers/selinux/compare/v1.3.2...v1.3.3)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
This commit is contained in:
dependabot-preview[bot]
2020-03-02 09:37:51 +00:00
committed by Daniel J Walsh
parent 275e9b855d
commit dc71dfc916
4 changed files with 5 additions and 3 deletions

View File

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