From 50e0bf716ab92bf6bb4c905b4e8a2559f1490edd Mon Sep 17 00:00:00 2001 From: Paul-Christian Volkmer Date: Thu, 17 Jul 2025 22:34:01 +0200 Subject: [PATCH] fix: argument position --- ui/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/main.rs b/ui/src/main.rs index 207d2d3..145a73e 100644 --- a/ui/src/main.rs +++ b/ui/src/main.rs @@ -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) => {