From: Chris Date: Sat, 28 Jun 2025 10:49:11 +0000 (+1000) Subject: Remove accidentally left debug statements from ec.c X-Git-Tag: openssl-3.6.0-alpha1~505 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2d978786f3e97a2701d5f62c26a4baab4a224e69;p=thirdparty%2Fopenssl.git 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) --- 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) {