In some cases, the svn author names might contain leading or trailing
whitespaces, leading to messages such as:

  Author: user1
   not defined in authors.txt

(the trailing newline leads to the line break). The user "user1" is
defined in authors.txt though, e.g.

  user1 = User <us...@example.com>

Fix this by trimming the author name retreived from svn before using it
in check_author.

Helped-by: Eric Sunshine <sunsh...@sunshineco.com>
Signed-off-by: Tobias Klauser <tklau...@distanz.ch>
---
 perl/Git/SVN.pm | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/perl/Git/SVN.pm b/perl/Git/SVN.pm
index 76b29659057d..4b28b8778474 100644
--- a/perl/Git/SVN.pm
+++ b/perl/Git/SVN.pm
@@ -1491,6 +1491,10 @@ sub call_authors_prog {
 
 sub check_author {
        my ($author) = @_;
+       if (defined $author) {
+               $author =~ s/^\s+//g;
+               $author =~ s/\s+$//g;
+       }
        if (!defined $author || length $author == 0) {
                $author = '(no author)';
        }
-- 
2.23.0.257.gbff4bb1fe750

Reply via email to