aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael S. Tsirkin <mst@redhat.com>2013-08-26 19:39:54 +0300
committerMichael S. Tsirkin <mst@redhat.com>2014-05-18 23:24:34 +0300
commit6bd531455d40c1444d92444af7d291c9cbfcc45a (patch)
treed062fd9e8d7f7cd0f82b465fa79c2191653c40df
parentb4f86a4ce85e4e370a67455de6586a02f158a789 (diff)
downloadgit-6bd531455d40c1444d92444af7d291c9cbfcc45a.tar.gz
git send-email: include [anything]-by: signatures
Consider [anything]-by: a signature. This includes Tested-by: Acked-by: Reviewed-by: etc. Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
-rwxr-xr-xgit-send-email.perl2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-send-email.perl b/git-send-email.perl
index fdb0029b59..3bc46603f3 100755
--- a/git-send-email.perl
+++ b/git-send-email.perl
@@ -1401,7 +1401,7 @@ foreach my $t (@files) {
# Now parse the message body
while(<$fh>) {
$message .= $_;
- if (/^(Signed-off-by|Cc): (.*)$/i) {
+ if (/^([A-Za-z-]*-by|Cc): (.*)$/i) {
chomp;
my ($what, $c) = ($1, $2);
chomp $c;