[openssl-commits] [openssl] OpenSSL_1_1_0-stable update

Richard Levitte levitte at openssl.org
Thu Feb 8 12:01:01 UTC 2018


The branch OpenSSL_1_1_0-stable has been updated
       via  30562caa34de5f23dead9b246aaf284748e184bf (commit)
      from  65de3f1657d8a3bdb7c48063931a3c619817c921 (commit)


- Log -----------------------------------------------------------------
commit 30562caa34de5f23dead9b246aaf284748e184bf
Author: Richard Levitte <levitte at openssl.org>
Date:   Thu Feb 8 12:54:25 2018 +0100

    util/mkdef.pl: Fix incomplete cherry-pick
    
    The cherry pick that resulted in 65de3f1657d8a3bdb7c48063931a3c619817c921
    was incomplete.
    
    Reviewed-by: Matt Caswell <matt at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/5283)

-----------------------------------------------------------------------

Summary of changes:
 util/mkdef.pl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/util/mkdef.pl b/util/mkdef.pl
index 3775b70..66db26c 100755
--- a/util/mkdef.pl
+++ b/util/mkdef.pl
@@ -198,7 +198,7 @@ foreach (@ARGV, split(/ /, $config{options}))
 		}
 	}
 	if (/^no-deprecated$/) {
-		foreach (keys %disabled_algorithms) {
+		foreach (@known_algorithms) {
 			if (/^DEPRECATEDIN_/) {
 				$disabled_algorithms{$_} = 1;
 			}


More information about the openssl-commits mailing list