[openssl-commits] [tools] master update

Richard Levitte levitte at openssl.org
Fri Nov 16 08:48:11 UTC 2018


The branch master has been updated
       via  b7d03f8bd7e918a96c25eb6fadd1b70f28cc6e39 (commit)
      from  e759eccf4e6bd38f8a16e8ee053b1da978d4fb89 (commit)


- Log -----------------------------------------------------------------
commit b7d03f8bd7e918a96c25eb6fadd1b70f28cc6e39
Author: Richard Levitte <levitte at openssl.org>
Date:   Fri Nov 16 00:55:11 2018 +0100

    gitaddrev: don't lowercase the git author email address
    
    That may lead to difficulties matching with the person database.
    
    Reviewed-by: Matthias St. Pierre <Matthias.St.Pierre at ncp-e.com>
    Reviewed-by: Paul Yang <yang.yang at baishancloud.com>
    (Merged from https://github.com/openssl/tools/pull/34)

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

Summary of changes:
 review-tools/gitaddrev | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/review-tools/gitaddrev b/review-tools/gitaddrev
index 08cc5d8..4b97298 100755
--- a/review-tools/gitaddrev
+++ b/review-tools/gitaddrev
@@ -128,7 +128,7 @@ if (my $rev = try_add_reviewer($ENV{GIT_AUTHOR_EMAIL})) {
     # In case the author is unknown to our databases or is lacking a CLA,
     # we need to be extra careful to check if this is supposed to be a
     # trivial commit.
-    my $author = lc($ENV{GIT_AUTHOR_EMAIL});
+    my $author = $ENV{GIT_AUTHOR_EMAIL};
 
     # Note: it really should be enough to check if $author is unknown, since
     # the databases are supposed to be consistent with each other.  However,


More information about the openssl-commits mailing list