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

Richard Levitte levitte at openssl.org
Tue Sep 6 06:31:27 UTC 2016


The branch OpenSSL_1_1_0-stable has been updated
       via  f52d16ac1d0f0bc3a13e32cc62dcbd4fed4ac649 (commit)
      from  578dc1cea3e2d725987d78ad21a5a86bfb0cef82 (commit)


- Log -----------------------------------------------------------------
commit f52d16ac1d0f0bc3a13e32cc62dcbd4fed4ac649
Author: Richard Levitte <levitte at openssl.org>
Date:   Tue Sep 6 00:48:13 2016 +0200

    Correct detection of group end in map file when testing symbol presence
    
    Reviewed-by: Matt Caswell <matt at openssl.org>
    (cherry picked from commit 77a42b5f177e308233ab108806c48b9590a780e2)

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

Summary of changes:
 test/recipes/01-test_symbol_presence.t | 1 +
 1 file changed, 1 insertion(+)

diff --git a/test/recipes/01-test_symbol_presence.t b/test/recipes/01-test_symbol_presence.t
index dbd4b10..7f2a2d7 100644
--- a/test/recipes/01-test_symbol_presence.t
+++ b/test/recipes/01-test_symbol_presence.t
@@ -69,6 +69,7 @@ foreach my $libname (@libnames) {
             map { s|;||; s|\s+||g; $_ }
             grep { $in_global = 1 if m|global:|;
                    $in_global = 0 if m|local:|;
+                   $in_global = 0 if m|\}|;
                    $in_global && m|;|; } @def_lines;
 
         note "Number of lines in \@nm_lines after massaging: ", scalar @nm_lines;


More information about the openssl-commits mailing list