follow-up xattr

This commit is contained in:
Alexander Weiss 2023-03-24 05:57:13 +01:00
parent c7e134102c
commit d034646e69
2 changed files with 3 additions and 2 deletions

View File

@ -13,6 +13,7 @@ New features:
- New option --filter-fn allows to implement your own snapshot filter using the Rhai language.
- New command dump has been added.
- New command merge has been added.
- Support for extended file attributes has been added.
- Extra or wrong fields in the config file now lead to rustic complaining and aborting.
- backup: Paths are now sanitized from command arguments and config file before matching and applying the configuration.
- check --read-data: progress bar now also shows total bytes to check and ETA.

View File

@ -327,8 +327,8 @@ impl LocalDestination {
#[cfg(windows)]
pub fn set_extended_attributes(
&self,
item: impl AsRef<Path>,
extended_attributes: &[ExtendedAttribute],
_item: impl AsRef<Path>,
_extended_attributes: &[ExtendedAttribute],
) -> Result<()> {
Ok(())
}