X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=commit-tree.c;h=b1ef0b590ab879fbbc93d04a2f8f488a223ea58d;hb=540bf654d007b3289adec37e3008c588ba677e25;hp=8f3b96c26df714554eb274999e185394a4c3f420;hpb=6aa33f4035d547ac2bd629b1cfd9c46262809d73;p=git.git diff --git a/commit-tree.c b/commit-tree.c index 8f3b96c2..b1ef0b59 100644 --- a/commit-tree.c +++ b/commit-tree.c @@ -64,7 +64,7 @@ static void check_valid(unsigned char *sha1, const char *expect) #define MAXPARENT (16) static unsigned char parent_sha1[MAXPARENT][20]; -static char *commit_tree_usage = "git-commit-tree [-p ]* < changelog"; +static const char commit_tree_usage[] = "git-commit-tree [-p ]* < changelog"; static int new_parent(int idx) { @@ -79,16 +79,6 @@ static int new_parent(int idx) return 1; } -static char *git_author_info(void) -{ - return get_ident(gitenv("GIT_AUTHOR_NAME"), gitenv("GIT_AUTHOR_EMAIL"), gitenv("GIT_AUTHOR_DATE")); -} - -static char *git_committer_info(void) -{ - return get_ident(gitenv("GIT_COMMITTER_NAME"), gitenv("GIT_COMMITTER_EMAIL"), gitenv("GIT_COMMITTER_DATE")); -} - int main(int argc, char **argv) { int i;