From 7af0222199de980ed01b1c50e501777ae6b461e1 Mon Sep 17 00:00:00 2001 From: Nicolas Roggeman Date: Tue, 9 Dec 2025 15:44:55 +0100 Subject: [PATCH] Fix not working '-p' option (Use production public key for PKI) --- CHANGELOG.md | 5 +++++ src/launcher.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aac126d9..88186509 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.25.13] 2025-12-09 + +### Fix +- Fix not working '-p' option (Use production public key for PKI) + ## [0.25.12] 2025-12-08 ### Fix diff --git a/src/launcher.c b/src/launcher.c index 3fb833b0..fa716990 100644 --- a/src/launcher.c +++ b/src/launcher.c @@ -788,7 +788,7 @@ int main(int argc, char *argv[]) fprintf(stderr, "[*] speculos launcher revision: " GIT_REVISION "\n"); - while ((opt = getopt(argc, argv, "c:tr:s:m:k:a:f:p:l:")) != -1) { + while ((opt = getopt(argc, argv, "c:tr:s:m:k:a:f:pl:")) != -1) { switch (opt) { case 'f': fonts_path = optarg;