From 3ba8a94bd073c07433176b8488932e595947a08e Mon Sep 17 00:00:00 2001 From: "tsmith@ramayana.hindu.god" <> Date: Thu, 24 Jan 2008 00:31:47 -0700 Subject: [PATCH] Fix bug in BK trigger for sending changes to InnoDB devs. --- BitKeeper/triggers/triggers-lib.pl | 4 ++-- 1 file 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;