From e68989a739d8b1c5effb898d1ac78d27ca9d313a Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Tue, 6 Feb 2007 01:52:04 -0800 Subject: annotate: fix for cvsserver. git-cvsserver does not want the boundary commits shown any differently. Signed-off-by: Junio C Hamano --- builtin-annotate.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'builtin-annotate.c') diff --git a/builtin-annotate.c b/builtin-annotate.c index 57c46840d..9db7cfe74 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++) { -- cgit v1.2.1