mirror of
git://git.proxmox.com/git/proxmox-backup.git
synced 2025-02-03 13:47:18 +03:00
client: pxar: fix minor formatting issues
Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
This commit is contained in:
parent
8df3a17cde
commit
9052dff2b3
@ -161,7 +161,7 @@ where
|
||||
feature_flags & fs_feature_flags,
|
||||
fs_magic,
|
||||
&mut fs_feature_flags,
|
||||
options.skip_e2big_xattr
|
||||
options.skip_e2big_xattr,
|
||||
)
|
||||
.context("failed to get metadata for source directory")?;
|
||||
|
||||
@ -545,7 +545,7 @@ impl Archiver {
|
||||
self.flags(),
|
||||
self.fs_magic,
|
||||
&mut self.fs_feature_flags,
|
||||
self.skip_e2big_xattr
|
||||
self.skip_e2big_xattr,
|
||||
)?;
|
||||
|
||||
let match_path = PathBuf::from("/").join(self.path.clone());
|
||||
@ -787,7 +787,14 @@ fn get_metadata(
|
||||
..Default::default()
|
||||
};
|
||||
|
||||
get_xattr_fcaps_acl(&mut meta, fd, &proc_path, flags, fs_feature_flags, skip_e2big_xattr)?;
|
||||
get_xattr_fcaps_acl(
|
||||
&mut meta,
|
||||
fd,
|
||||
&proc_path,
|
||||
flags,
|
||||
fs_feature_flags,
|
||||
skip_e2big_xattr,
|
||||
)?;
|
||||
get_chattr(&mut meta, fd)?;
|
||||
get_fat_attr(&mut meta, fd, fs_magic)?;
|
||||
get_quota_project_id(&mut meta, fd, flags, fs_magic)?;
|
||||
|
@ -1000,7 +1000,7 @@ async fn create_backup(
|
||||
patterns: pattern_list.clone(),
|
||||
entries_max: entries_max as usize,
|
||||
skip_lost_and_found,
|
||||
skip_e2big_xattr
|
||||
skip_e2big_xattr,
|
||||
};
|
||||
|
||||
let upload_options = UploadOptions {
|
||||
|
Loading…
x
Reference in New Issue
Block a user