1
0
mirror of https://github.com/pcvolkmer/cert-tools.git synced 2025-09-13 03:02:51 +00:00

fix: argument position

This commit is contained in:
2025-07-17 22:34:01 +02:00
parent 50c285a01b
commit 50e0bf716a

View File

@@ -273,7 +273,7 @@ impl Ui {
None => {}
Some(ref chain) => match file {
Ok(file) => {
match save_p12_file(&file, chain.certs(), &self.password_1, private_key)
match save_p12_file(&file, &self.password_1, chain.certs(), private_key)
{
Ok(_) => {}
Err(err) => {