diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-03-02 18:52:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-02 18:52:33 +0100 |
commit | f9a476833bc8461dd246db0b31f542ad4a6d7587 (patch) | |
tree | 858eef79ec1f5341a4ceecfc81a34f1b11f6ae5f /vendor/github.com | |
parent | f5c853ca996b2c16f748031430e16fffb96797f2 (diff) | |
parent | dc71dfc916546542a02333954d74004b70dff3b7 (diff) | |
download | podman-f9a476833bc8461dd246db0b31f542ad4a6d7587.tar.gz podman-f9a476833bc8461dd246db0b31f542ad4a6d7587.tar.bz2 podman-f9a476833bc8461dd246db0b31f542ad4a6d7587.zip |
Merge pull request #5365 from containers/dependabot/go_modules/github.com/opencontainers/selinux-1.3.3
Bump github.com/opencontainers/selinux from 1.3.2 to 1.3.3
Diffstat (limited to 'vendor/github.com')
-rw-r--r-- | vendor/github.com/opencontainers/selinux/go-selinux/selinux_linux.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/github.com/opencontainers/selinux/go-selinux/selinux_linux.go b/vendor/github.com/opencontainers/selinux/go-selinux/selinux_linux.go index 0e97a0778..c51ddfda2 100644 --- a/vendor/github.com/opencontainers/selinux/go-selinux/selinux_linux.go +++ b/vendor/github.com/opencontainers/selinux/go-selinux/selinux_linux.go @@ -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 { |