Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2007-02-06 12:52:04 +0300
committerJunio C Hamano <junkio@cox.net>2007-02-06 12:52:04 +0300
commite68989a739d8b1c5effb898d1ac78d27ca9d313a (patch)
tree676b808ec78681a347bf2c766d57c19847c2277f /builtin-annotate.c
parentc8f80d4dc89eddd4b343cb82ca8a75cfa41f800e (diff)
annotate: fix for cvsserver.
git-cvsserver does not want the boundary commits shown any differently. Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'builtin-annotate.c')
-rw-r--r--builtin-annotate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-annotate.c b/builtin-annotate.c
index 57c46840d5..9db7cfe74c 100644
--- a/builtin-annotate.c
+++ b/builtin-annotate.c
@@ -12,7 +12,7 @@ int cmd_annotate(int argc, const char **argv, const char *prefix)
int i;
nargv = xmalloc(sizeof(char *) * (argc + 2));
- nargv[0] = "blame";
+ nargv[0] = "annotate";
nargv[1] = "-c";
for (i = 1; i < argc; i++) {