[openssl-commits] [openssl] master update

Richard Levitte levitte at openssl.org
Sun May 1 12:16:36 UTC 2016


The branch master has been updated
       via  e428f59514291b0c567709cd380fd05a692a2645 (commit)
      from  7cafbb4bd373f024c4900dcaa71aaf626c2ddbae (commit)


- Log -----------------------------------------------------------------
commit e428f59514291b0c567709cd380fd05a692a2645
Author: Richard Levitte <levitte at openssl.org>
Date:   Sun May 1 14:01:50 2016 +0200

    Skip blank lines if old copyright comment was removed, and only then
    
    Reviewed-by: Rich Salz <rsalz at openssl.org>

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

Summary of changes:
 util/copyright.pl | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/util/copyright.pl b/util/copyright.pl
index bdaa9c1..ccc70af 100644
--- a/util/copyright.pl
+++ b/util/copyright.pl
@@ -31,6 +31,7 @@ sub check_comment()
     }
 
     print @lines unless $skipit;
+    return $skipit;
 }
 
 # Look for leading copyright blocks and process (print/swallow) them.
@@ -61,7 +62,7 @@ EOF
     }
     next if m@^$@;
     last if not m@/\*@;
-    &check_comment($_);
+    last unless &check_comment($_);
 }
 
 if (defined($_)) {


More information about the openssl-commits mailing list