restic: cleanup node type determination
os.ModeCharDevice is already included in os.ModeType
This commit is contained in:
parent
d4b8abd3e2
commit
c95de54726
1 changed files with 1 additions and 1 deletions
|
@ -109,7 +109,7 @@ func NodeFromFileInfo(path string, fi os.FileInfo) (*Node, error) {
|
|||
}
|
||||
|
||||
func nodeTypeFromFileInfo(fi os.FileInfo) string {
|
||||
switch fi.Mode() & (os.ModeType | os.ModeCharDevice) {
|
||||
switch fi.Mode() & os.ModeType {
|
||||
case 0:
|
||||
return "file"
|
||||
case os.ModeDir:
|
||||
|
|
Loading…
Reference in a new issue