From c504aae2a6c96f1363562a3aa1dc05fb4462e978 Mon Sep 17 00:00:00 2001 From: Rene Scharfe Date: Fri, 27 May 2005 01:03:26 +0200 Subject: [PATCH] fix and testcase for git-commit-tree option Actually use GIT_COMMITTER_DATE in git-commit-tree. (It used to mistakenly re-use the author date) Add test-case for it. Signed-off-by: Rene Scharfe Signed-off-by: Linus Torvalds --- commit-tree.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'commit-tree.c') diff --git a/commit-tree.c b/commit-tree.c index e9069971a8..1d125b8412 100644 --- a/commit-tree.c +++ b/commit-tree.c @@ -153,7 +153,7 @@ int main(int argc, char **argv) parse_date(audate, date, sizeof(date)); cmdate = gitenv("GIT_COMMITTER_DATE"); if (cmdate) - parse_date(audate, realdate, sizeof(realdate)); + parse_date(cmdate, realdate, sizeof(realdate)); remove_special(gecos); remove_special(realgecos); remove_special(commitgecos); remove_special(email); remove_special(realemail); remove_special(commitemail); -- cgit v1.2.3