fix broken format strings
Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
This commit is contained in:
parent
b25e07b3ce
commit
f66d814792
|
@ -194,7 +194,7 @@ impl BackupEnvironment {
|
||||||
if size < data.chunk_size {
|
if size < data.chunk_size {
|
||||||
data.small_chunk_count += 1;
|
data.small_chunk_count += 1;
|
||||||
if data.small_chunk_count > 1 {
|
if data.small_chunk_count > 1 {
|
||||||
bail!("fixed writer '{}' - detected multiple end chunks (chunk size too small)");
|
bail!("fixed writer '{}' - detected multiple end chunks (chunk size too small)", wid);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -257,7 +257,7 @@ pub fn media_changer(
|
||||||
None => Ok(None),
|
None => Ok(None),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
_ => bail!("unknown drive type '{}' - internal error"),
|
ty => bail!("unknown drive type '{}' - internal error", ty),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
None => {
|
None => {
|
||||||
|
@ -305,7 +305,7 @@ pub fn open_drive(
|
||||||
let handle = open_lto_tape_drive(&tape)?;
|
let handle = open_lto_tape_drive(&tape)?;
|
||||||
Ok(Box::new(handle))
|
Ok(Box::new(handle))
|
||||||
}
|
}
|
||||||
_ => bail!("unknown drive type '{}' - internal error"),
|
ty => bail!("unknown drive type '{}' - internal error", ty),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
None => {
|
None => {
|
||||||
|
@ -495,7 +495,7 @@ pub fn request_and_load_media(
|
||||||
update_and_log_request_error(&mut last_error, request_error)?;
|
update_and_log_request_error(&mut last_error, request_error)?;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
_ => bail!("drive type '{}' not implemented!"),
|
ty => bail!("drive type '{}' not implemented!", ty),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
None => {
|
None => {
|
||||||
|
@ -584,7 +584,7 @@ fn tape_device_path(
|
||||||
"lto" => {
|
"lto" => {
|
||||||
LtoTapeDrive::deserialize(config)?.path
|
LtoTapeDrive::deserialize(config)?.path
|
||||||
}
|
}
|
||||||
_ => bail!("unknown drive type '{}' - internal error"),
|
ty => bail!("unknown drive type '{}' - internal error", ty),
|
||||||
};
|
};
|
||||||
Ok(path)
|
Ok(path)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue