update vendor

This commit is contained in:
Ettore Di Giacinto
2021-10-24 01:18:02 +02:00
parent ebbb3aad27
commit 063f704057
246 changed files with 7 additions and 40932 deletions

View File

@@ -1,18 +0,0 @@
// +build !windows
package mtree
import (
"os"
"syscall"
)
func statIsUID(stat os.FileInfo, uid int) bool {
statT := stat.Sys().(*syscall.Stat_t)
return statT.Uid == uint32(uid)
}
func statIsGID(stat os.FileInfo, gid int) bool {
statT := stat.Sys().(*syscall.Stat_t)
return statT.Gid == uint32(gid)
}