mirror of
git://git.proxmox.com/git/proxmox-backup.git
synced 2025-01-06 13:18:00 +03:00
distinguish between block/chardevs in diff output
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
parent
52189f181f
commit
45c7d758e5
@ -428,7 +428,8 @@ fn show_file_list(
|
||||
let entry_kind = match entry.kind() {
|
||||
EntryKind::Symlink(_) => "l",
|
||||
EntryKind::Hardlink(_) => "h",
|
||||
EntryKind::Device(_) => "c/b",
|
||||
EntryKind::Device(_) if entry.metadata().stat.is_blockdev() => "b",
|
||||
EntryKind::Device(_) => "c",
|
||||
EntryKind::Socket => "s",
|
||||
EntryKind::Fifo => "p",
|
||||
EntryKind::File { .. } => "f",
|
||||
|
Loading…
Reference in New Issue
Block a user