[pbs-devel] [PATCH proxmox-backup v2] pbs-client: fixed typo in error message

Gabriel Goller g.goller at proxmox.com
Wed Apr 10 14:54:56 CEST 2024


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

Signed-off-by: Gabriel Goller <g.goller at proxmox.com>
---

v2, thanks @Lukas:
 - inlined variables

 pbs-client/src/backup_writer.rs | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pbs-client/src/backup_writer.rs b/pbs-client/src/backup_writer.rs
index 8bd0e4f3..b944692b 100644
--- a/pbs-client/src/backup_writer.rs
+++ b/pbs-client/src/backup_writer.rs
@@ -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();
-- 
2.43.0





More information about the pbs-devel mailing list