[openssl-commits] [openssl] OpenSSL_1_0_2-stable update
Dr. Stephen Henson
steve at openssl.org
Thu Jul 9 15:58:44 UTC 2015
The branch OpenSSL_1_0_2-stable has been updated
via 2a7059c56f885a3fa0842e886f5178def8e5481d (commit)
from a7ef1e907276a899fbfeee642810caccb03fc07c (commit)
- Log -----------------------------------------------------------------
commit 2a7059c56f885a3fa0842e886f5178def8e5481d
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>
-----------------------------------------------------------------------
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 2bd96cd..f4520d4 100755
--- a/util/mkstack.pl
+++ b/util/mkstack.pl
@@ -98,7 +98,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