Rename parameter filename -> path

This commit is contained in:
Alexander Neumann 2017-09-10 20:28:21 +02:00
parent 89938bc21c
commit a8aa4eb06c

View File

@ -17,7 +17,7 @@ import (
// RejectFunc is a function that takes a filename and os.FileInfo of a // RejectFunc is a function that takes a filename and os.FileInfo of a
// file that would be included in the backup. The function returns true if it // file that would be included in the backup. The function returns true if it
// should be excluded (rejected) from the backup. // should be excluded (rejected) from the backup.
type RejectFunc func(filename string, fi os.FileInfo) bool type RejectFunc func(path string, fi os.FileInfo) bool
// rejectByPattern returns a RejectFunc which rejects files that match // rejectByPattern returns a RejectFunc which rejects files that match
// one of the patterns. // one of the patterns.