pxar: Adapt SequentialDecoder::restore() calls to pass empty match pattern for full restore

Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
This commit is contained in:
Christian Ebner
2019-07-16 18:19:44 +02:00
committed by Dietmar Maurer
parent d32c2e4d27
commit fa7e957ca3
3 changed files with 3 additions and 3 deletions

View File

@ -71,7 +71,7 @@ impl <'a, R: Read + Seek, F: Fn(&Path) -> Result<(), Error>> Decoder<'a, R, F> {
self.seek(SeekFrom::Start(start))?;
self.inner.restore(path)?;
self.inner.restore(path, &Vec::new())?;
Ok(())
}