Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThorvald Natvig <slicer@users.sourceforge.net>2009-04-29 20:49:42 +0400
committerThorvald Natvig <slicer@users.sourceforge.net>2009-04-29 20:49:42 +0400
commitc35c6e86b0525fb0721c2b2aa4e29643bfec60f5 (patch)
tree996752861459dea39c01562f2e9d1e9ebe3bd631 /scripts/git2cl.pl
parent4f2bb59c2c1c8cdf9e655f1483b27fd8e363a6a5 (diff)
Update changelog script to fix silly email mistakes
Diffstat (limited to 'scripts/git2cl.pl')
-rw-r--r--scripts/git2cl.pl5
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/git2cl.pl b/scripts/git2cl.pl
index 9d2185b97..a6461cf41 100644
--- a/scripts/git2cl.pl
+++ b/scripts/git2cl.pl
@@ -14,6 +14,11 @@ my $lsub = '';
while(<LOG>) {
chomp();
my ($hash,$author,$email,$date,$subject) = split(/\0/,$_);
+
+ if ($author eq "Thorvald Natvig") {
+ # Because someone forgets to set their git username on every platform...
+ $email = 'slicer@users.sourceforge.net';
+ }
if ($subject =~ s/\s*\[([\w-]+)\]\s*$//) {
$author = $1;