pbs-client: fixed typo in error message

Fixed error message on the client: 'dynmamic' -> 'dynamic'.

Signed-off-by: Gabriel Goller <g.goller@proxmox.com>
This commit is contained in:
Gabriel Goller 2024-04-10 14:54:56 +02:00 committed by Thomas Lamprecht
parent 432de66a36
commit 52731339c2

View File

@ -574,7 +574,7 @@ impl BackupWriter {
.await?;
let index = DynamicIndexReader::new(tmpfile).map_err(|err| {
format_err!("unable to read dynmamic index '{}' - {}", archive_name, err)
format_err!("unable to read dynamic index '{archive_name}' - {err}")
})?;
// Note: do not use values stored in index (not trusted) - instead, computed them again
let (csum, size) = index.compute_csum();