src/bin/proxmox-backup-proxy.rs: fix typo in pkcs12 error message
Signed-off-by: Christian Ebner <c.ebner@proxmox.com>
This commit is contained in:
parent
1ce2f7cfb9
commit
97eeea3b4a
|
@ -84,7 +84,7 @@ fn run() -> Result<(), Error> {
|
|||
|
||||
let identity = match native_tls::Identity::from_pkcs12(&raw_cert, "") {
|
||||
Ok(data) => data,
|
||||
Err(err) => bail!("unabled to decode pkcs12 identity {} - {}", cert_path, err),
|
||||
Err(err) => bail!("unable to decode pkcs12 identity {} - {}", cert_path, err),
|
||||
};
|
||||
|
||||
let server = daemon::create_daemon(
|
||||
|
|
Loading…
Reference in New Issue