1
0
Fork 0
mirror of https://github.com/restic/restic.git synced 2024-12-25 01:06:39 +00:00

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
// file that would be included in the backup. The function returns true if it
// 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
// one of the patterns.