From 2d978786f3e97a2701d5f62c26a4baab4a224e69 Mon Sep 17 00:00:00 2001 From: Chris Date: Sat, 28 Jun 2025 20:49:11 +1000 Subject: [PATCH] Remove accidentally left debug statements from ec.c CLA: trivial - Cleaned up hardcoded debug statements that were inadvertently left in the open source distribution - No functional changes to the EC key processing logic Reviewed-by: Neil Horman Reviewed-by: Paul Dale Reviewed-by: Dmitry Belyavskiy Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/27921) --- apps/ec.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/apps/ec.c b/apps/ec.c index 677876ccc90..1df769fdf57 100644 --- a/apps/ec.c +++ b/apps/ec.c @@ -170,8 +170,6 @@ int ec_main(int argc, char **argv) goto end; } - BIO_printf(bio_err, "read EC key\n"); - if (pubin) eckey = load_pubkey(infile, informat, 1, passin, e, "public key"); else @@ -240,7 +238,6 @@ int ec_main(int argc, char **argv) const char *output_type = outformat == FORMAT_ASN1 ? "DER" : "PEM"; const char *output_structure = "type-specific"; - BIO_printf(bio_err, "writing EC key\n"); if (param_out) { selection = OSSL_KEYMGMT_SELECT_DOMAIN_PARAMETERS; } else if (pubin || pubout) { -- 2.39.5