[web] master update
Richard Levitte
levitte at openssl.org
Mon Apr 26 09:35:12 UTC 2021
The branch master has been updated
via 86a7e16d191918cf6bc87764d66c166985bec04e (commit)
from 650e079c69473944f2731e6a964d260a2a6dff61 (commit)
- Log -----------------------------------------------------------------
commit 86a7e16d191918cf6bc87764d66c166985bec04e
Author: Richard Levitte <levitte at openssl.org>
Date: Mon Apr 26 10:51:53 2021 +0200
bin/mk-latest: Make the adapation for the OpenSSL 3.0 version scheme work
The attempt done in the previous commit didn't quite work out.
Current fix is to hard code 3.x series.
Fixes #229
Reviewed-by: Matt Caswell <matt at openssl.org>
(Merged from https://github.com/openssl/web/pull/232)
-----------------------------------------------------------------------
Summary of changes:
bin/mk-latest | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/bin/mk-latest b/bin/mk-latest
index 1ac1c46..7a57fdd 100755
--- a/bin/mk-latest
+++ b/bin/mk-latest
@@ -42,9 +42,9 @@ print <<\EOF;
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(openssl-0\.9\.\d.*) old/0.9.x/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
-RewriteRule ^(openssl-(\d+\.\d+\.\d+).*) old/$2/$1 [L]
+RewriteRule ^(openssl-3\.(\d+).*) old/3.$2/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
-RewriteRule ^(openssl-(\d+\.\d+).*) old/$2/$1 [L]
+RewriteRule ^(openssl-(\d+\.\d+\.\d+).*) old/$2/$1 [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^openssl-(fips.*) old/fips/openssl-$1 [L]
More information about the openssl-commits
mailing list