2
2
mirror of https://github.com/octoleo/restic.git synced 2024-05-28 22:50:48 +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.