From 1dea43c3d3c648dc85e22404efc2c64c2b6e3c2f Mon Sep 17 00:00:00 2001 From: Pauli Date: Tue, 21 May 2019 11:28:19 +1000 Subject: [PATCH] Always show application and library versions in "openssl version". Reviewed-by: Matt Caswell Reviewed-by: Shane Lontis (Merged from https://github.com/openssl/openssl/pull/8963) --- apps/version.c | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/apps/version.c b/apps/version.c index 279aeff2ff..83f0ea27b3 100644 --- a/apps/version.c +++ b/apps/version.c @@ -122,14 +122,9 @@ opthelp: if (!dirty) version = 1; - if (version) { - if (strcmp(OpenSSL_version(OPENSSL_FULL_VERSION_STRING), - OPENSSL_FULL_VERSION_STR) == 0) - printf("%s\n", OpenSSL_version(OPENSSL_VERSION)); - else - printf("%s (Library: %s)\n", - OPENSSL_VERSION_TEXT, OpenSSL_version(OPENSSL_VERSION)); - } + if (version) + printf("%s (Library: %s)\n", + OPENSSL_VERSION_TEXT, OpenSSL_version(OPENSSL_VERSION)); if (date) printf("%s\n", OpenSSL_version(OPENSSL_BUILT_ON)); if (platform) -- 2.25.1