mirror of
https://github.com/restic/restic.git
synced 2025-04-25 15:20:47 +00:00
restic: cleanup node type determination
os.ModeCharDevice is already included in os.ModeType
This commit is contained in:
parent
634e2a46d9
commit
0018bb7854
@ -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…
x
Reference in New Issue
Block a user