diff options
author | unknown <tsmith@ramayana.hindu.god> | 2008-01-24 00:31:47 -0700 |
---|---|---|
committer | unknown <tsmith@ramayana.hindu.god> | 2008-01-24 00:31:47 -0700 |
commit | e09b41cf579d6bff2ac1652871fbbbdf47ebfd98 (patch) | |
tree | b511974c921af4d6b29b2da2ad389265e9e97126 /BitKeeper | |
parent | b5e3c1f84727382467a0f8ac7a4de60d312471dd (diff) | |
download | mariadb-git-e09b41cf579d6bff2ac1652871fbbbdf47ebfd98.tar.gz |
Fix bug in BK trigger for sending changes to InnoDB devs.
BitKeeper/triggers/triggers-lib.pl:
Fix bug in innodb_send_changes_mail() that always displayed
details for the most recent changeset (-r+) instead of the
$cset function argument.
Diffstat (limited to 'BitKeeper')
-rw-r--r-- | BitKeeper/triggers/triggers-lib.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/BitKeeper/triggers/triggers-lib.pl b/BitKeeper/triggers/triggers-lib.pl index 834cd9093d0..1c5f7a85726 100644 --- a/BitKeeper/triggers/triggers-lib.pl +++ b/BitKeeper/triggers/triggers-lib.pl @@ -345,10 +345,10 @@ changes are in a clone of a $mysql_version tree. EOF } print SENDMAIL "\n"; - print SENDMAIL qx(bk changes -r+); + print SENDMAIL qx(bk changes -r'$cset'); print SENDMAIL "$description"; print SENDMAIL "The complete ChangeSet diffs follow.\n\n"; - print SENDMAIL qx(bk rset -r+ -ah | bk gnupatch -h -dup -T); + print SENDMAIL qx(bk rset -r'$cset' -ah | bk gnupatch -h -dup -T); close_or_warn(SENDMAIL, "$sendmail -t") or return undef; |