[openssl-commits] [openssl] master update

Rich Salz rsalz at openssl.org
Mon May 2 12:27:47 UTC 2016


The branch master has been updated
       via  d244dd559d0e6e594e4a0f911e49509e8a7b158b (commit)
      from  cba792a1e941788cba7dc700a2ef59420e7f2522 (commit)


- Log -----------------------------------------------------------------
commit d244dd559d0e6e594e4a0f911e49509e8a7b158b
Author: Rich Salz <rsalz at openssl.org>
Date:   Sun May 1 09:23:38 2016 -0400

    Handle multi-line "written by/for" comments.
    
    Reviewed-by: Richard Levitte <levitte at openssl.org>

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

Summary of changes:
 util/copyright.pl | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/util/copyright.pl b/util/copyright.pl
index ccc70af..4367f15 100644
--- a/util/copyright.pl
+++ b/util/copyright.pl
@@ -30,6 +30,12 @@ sub check_comment()
         }
     }
 
+    # Look for a multi-line "written by" comment.
+    if ( ! $skipit ) {
+        my $text = join('', @lines);
+        $skipit = 1 if $text =~ m/Written by.*for the OpenSSL Project/is;
+    }
+
     print @lines unless $skipit;
     return $skipit;
 }


More information about the openssl-commits mailing list