[openssl-commits] [openssl] OpenSSL_1_0_0-stable update

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


The branch OpenSSL_1_0_0-stable has been updated
       via  14cf669af13be931c7367bd3d85f344e24647cfd (commit)
      from  18c5ead86e781ba27c9108ab1854f0b2843238ec (commit)


- Log -----------------------------------------------------------------
commit 14cf669af13be931c7367bd3d85f344e24647cfd
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