mirror of
https://github.com/restic/restic.git
synced 2025-03-16 00:00:05 +01:00
nlink() -> Nlink take 2
This commit is contained in:
parent
e0f1ce6336
commit
9fda3d0938
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ func (e *dirEntry) equals(other *dirEntry) bool {
|
|||
}
|
||||
|
||||
if stat.Nlink != stat2.Nlink {
|
||||
fmt.Fprintf(os.Stderr, "%v: Number of links doe not match (%v != %v)\n", e.path, stat.nlink(), stat2.nlink())
|
||||
fmt.Fprintf(os.Stderr, "%v: Number of links doe not match (%v != %v)\n", e.path, stat.Nlink, stat2.Nlink)
|
||||
return false
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue