mirror of
https://github.com/containers/podman.git
synced 2025-12-01 10:38:05 +08:00
17 lines
245 B
Go
17 lines
245 B
Go
//go:build !windows
|
|
|
|
package images
|
|
|
|
import (
|
|
"os"
|
|
"syscall"
|
|
)
|
|
|
|
func checkHardLink(fi os.FileInfo) (devino, bool) {
|
|
st := fi.Sys().(*syscall.Stat_t)
|
|
return devino{
|
|
Dev: uint64(st.Dev), //nolint: unconvert
|
|
Ino: st.Ino,
|
|
}, st.Nlink > 1
|
|
}
|