1
0
Fork 0
mirror of https://github.com/restic/restic.git synced 2025-03-16 00:00:05 +01:00

nlink -> Nlink

This commit is contained in:
jgfrm 2017-02-07 09:47:46 +01:00
parent c5d05c672e
commit 5b2980df4e

View file

@ -47,5 +47,5 @@ func (e *dirEntry) equals(other *dirEntry) bool {
func nlink(info os.FileInfo) (uint64) {
stat, _ := info.Sys().(*syscall.Stat_t)
return stat.nlink
return stat.Nlink
}