summaryrefslogtreecommitdiffstats
path: root/apps/version.c
diff options
context:
space:
mode:
authorPauli <paul.dale@oracle.com>2019-05-21 11:28:19 +1000
committerShane Lontis <shane.lontis@oracle.com>2019-05-23 10:28:02 +1000
commit1dea43c3d3c648dc85e22404efc2c64c2b6e3c2f (patch)
treea9654dbe8bf821fda7f169354a9d0f4bc4b58c70 /apps/version.c
parent53bfacf2205d997bb72731797cbbdcd3ea7b4a64 (diff)
Always show application and library versions in "openssl version".
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/8963)
Diffstat (limited to 'apps/version.c')
-rw-r--r--apps/version.c11
1 files 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)