1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

Merge pull request #29439 from lixiaobing10051267/masterWalk

rectify function and variable referred in pkg/archive/changes_linux.go
This commit is contained in:
Aaron Lehmann 2016-12-16 17:25:09 -08:00 committed by GitHub
commit 545b97e6bc

View file

@ -65,7 +65,7 @@ func walkchunk(path string, fi os.FileInfo, dir string, root *FileInfo) error {
}
parent := root.LookUp(filepath.Dir(path))
if parent == nil {
return fmt.Errorf("collectFileInfoForChanges: Unexpectedly no parent for %s", path)
return fmt.Errorf("walkchunk: Unexpectedly no parent for %s", path)
}
info := &FileInfo{
name: filepath.Base(path),