summaryrefslogtreecommitdiff
path: root/commit-tree.c
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-02-19 04:31:05 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-02-22 21:14:57 (GMT)
commit589e4f93c7fc31d73da3d0764c71d939c9332442 (patch)
treec0aad947c381713f95ca171b10e974ea9bf895af /commit-tree.c
parent2fb4a21074cdd62ecdbb1fd491f743483275e2a4 (diff)
downloadgit-589e4f93c7fc31d73da3d0764c71d939c9332442.zip
git-589e4f93c7fc31d73da3d0764c71d939c9332442.tar.gz
git-589e4f93c7fc31d73da3d0764c71d939c9332442.tar.bz2
Delay "empty ident" errors until they really matter.
Previous one warned people upfront to encourage fixing their environment early, but some people just use repositories and git tools read-only without making any changes, and in such a case there is not much point insisting on them having a usable ident. This round attempts to move the error until either "git-var" asks for the ident explicitly or "commit-tree" wants to use it. Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'commit-tree.c')
-rw-r--r--commit-tree.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/commit-tree.c b/commit-tree.c
index b1c8dca..88871b0 100644
--- a/commit-tree.c
+++ b/commit-tree.c
@@ -118,8 +118,8 @@ int main(int argc, char **argv)
add_buffer(&buffer, &size, "parent %s\n", sha1_to_hex(parent_sha1[i]));
/* Person/date information */
- add_buffer(&buffer, &size, "author %s\n", git_author_info());
- add_buffer(&buffer, &size, "committer %s\n\n", git_committer_info());
+ add_buffer(&buffer, &size, "author %s\n", git_author_info(1));
+ add_buffer(&buffer, &size, "committer %s\n\n", git_committer_info(1));
/* And add the comment */
while (fgets(comment, sizeof(comment), stdin) != NULL)