[openssl-commits] [openssl] OpenSSL_1_0_1-stable update

Dr. Stephen Henson steve at openssl.org
Thu Jul 9 16:00:12 UTC 2015


The branch OpenSSL_1_0_1-stable has been updated
       via  a15ba3cca394d69dc57b4321902adbe2651bc6f0 (commit)
      from  7c17c20a56a76c219dcf35d4956026f021cdee52 (commit)


- Log -----------------------------------------------------------------
commit a15ba3cca394d69dc57b4321902adbe2651bc6f0
Author: Dr. Stephen Henson <steve at openssl.org>
Date:   Thu Jul 9 16:56:45 2015 +0100

    Sort @sstacklst correctly.
    
    Reviewed-by: Rich Salz <rsalz at openssl.org>
    (cherry picked from commit 2a7059c56f885a3fa0842e886f5178def8e5481d)

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

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

diff --git a/util/mkstack.pl b/util/mkstack.pl
index f708610..a86d91f 100755
--- a/util/mkstack.pl
+++ b/util/mkstack.pl
@@ -97,7 +97,7 @@ while(<IN>) {
 EOF
 	}
 
-	foreach $type_thing (sort @sstacklst) {
+    foreach $type_thing (sort { $a->[0] cmp $b->[0]} @sstacklst) {
 	    my $t1 = $type_thing->[0];
 	    my $t2 = $type_thing->[1];
 	    $new_stackfile .= <<EOF;


More information about the openssl-commits mailing list