From 35a498e431f81f94c4ee2dd451cdfe4d566fef3b Mon Sep 17 00:00:00 2001 From: Vitezslav Cizek Date: Thu, 13 Oct 2016 11:44:08 +0200 Subject: [PATCH] Configure: remove superfluous 0x The number is taken from the OPENSSL_VERSION_NUMBER which is already in the hex form. CLA: trivial Reviewed-by: Richard Levitte Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/1706) --- Configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Configure b/Configure index 38637fbce9..f451f94f76 100755 --- a/Configure +++ b/Configure @@ -290,7 +290,7 @@ if (defined $ENV{$local_config_envname}) { } -print "Configuring OpenSSL version $config{version} (0x$config{version_num})\n"; +print "Configuring OpenSSL version $config{version} ($config{version_num})\n"; $config{prefix}=""; $config{openssldir}=""; -- 2.34.1