Bump opencontainers/selinux from 1.10.0 to 1.10.1

Signed-off-by: Nabeel Rana <nabeelnrana@gmail.com>
This commit is contained in:
log1cb0mb
2022-04-27 21:08:40 +03:00
parent 7bd42d226a
commit ae29594d0b
7 changed files with 9 additions and 7 deletions

View File

@@ -12,7 +12,7 @@ import (
func rchcon(fpath, label string) error {
return pwalkdir.Walk(fpath, func(p string, _ fs.DirEntry, _ error) error {
e := setFileLabel(p, label)
e := lSetFileLabel(p, label)
// Walk a file tree can race with removal, so ignore ENOENT.
if errors.Is(e, os.ErrNotExist) {
return nil

View File

@@ -11,7 +11,7 @@ import (
func rchcon(fpath, label string) error {
return pwalk.Walk(fpath, func(p string, _ os.FileInfo, _ error) error {
e := setFileLabel(p, label)
e := lSetFileLabel(p, label)
// Walk a file tree can race with removal, so ignore ENOENT.
if errors.Is(e, os.ErrNotExist) {
return nil