pxar: Change text of warning for files matched by exclude patterns.

In addition to the .pxarexclude files, glob match patterns can be passed to pxar
also via cli parameters.
Therefore the warning is rephrased to be more ambiguous.

Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
This commit is contained in:
Christian Ebner 2020-02-20 14:29:13 +01:00 committed by Dietmar Maurer
parent 6da73c823f
commit 495b238bc1
1 changed files with 1 additions and 1 deletions

View File

@ -758,7 +758,7 @@ impl<'a, W: Write, C: BackupCatalogWriter> Encoder<'a, W, C> {
(MatchType::Positive, _) => {
let filename_osstr = std::ffi::OsStr::from_bytes(filename.to_bytes());
eprintln!(
"matched by .pxarexclude entry - skipping: {:?}",
"matched by exclude pattern - skipping: {:?}",
self.full_path().join(filename_osstr)
);
}