summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Borowitz <dborowitz@google.com>2010-11-04 15:08:01 -0700
committerVicent Marti <tanoku@gmail.com>2010-11-05 03:55:14 +0200
commit88d035bd1502d507554f59d6c699b3759bc2b758 (patch)
tree7d09337fb82a54f5d67cb77cb63db38130b62fdd
parentf24fa0880cdaa997bb12b298d44bf54988d6cfb4 (diff)
downloadlibgit2-88d035bd1502d507554f59d6c699b3759bc2b758.tar.gz
Update commit_time along with committer.
-rw-r--r--src/commit.c3
-rw-r--r--tests/t0403-write.c1
2 files changed, 2 insertions, 2 deletions
diff --git a/src/commit.c b/src/commit.c
index 1f365c927..4dbd7719a 100644
--- a/src/commit.c
+++ b/src/commit.c
@@ -282,6 +282,7 @@ void git_commit_set_committer(git_commit *commit, const char *name, const char *
git_person__free(commit->committer);
commit->committer = git_person__new(name, email, time);
+ commit->commit_time = time;
}
void git_commit_set_message(git_commit *commit, const char *message)
@@ -317,5 +318,3 @@ void git_commit_add_parent(git_commit *commit, git_commit *new_parent)
node->next = commit->parents;
commit->parents = node;
}
-
-
diff --git a/tests/t0403-write.c b/tests/t0403-write.c
index d91e7b64d..dfafca6f6 100644
--- a/tests/t0403-write.c
+++ b/tests/t0403-write.c
@@ -58,6 +58,7 @@ BEGIN_TEST(writenew_test)
must_be_true(strcmp(committer->name, COMMITTER_NAME) == 0);
must_be_true(strcmp(committer->email, COMMITTER_EMAIL) == 0);
must_be_true(committer->time == 123456789);
+ must_be_true(git_commit_time(commit) == 123456789);
must_be_true(strcmp(git_commit_message(commit), COMMIT_MESSAGE) == 0);