summary refs log tree commit diff
path: root/shell.c
diff options
context:
space:
mode:
authorRené Scharfe <l.s.r@web.de>2019-11-26 16:00:43 +0100
committerJunio C Hamano <gitster@pobox.com>2019-11-27 11:18:24 +0900
commitec6ee0c07a6dc93dd18003b069c78f514ccbe427 (patch)
treef860f5a1b7d7ee5540ba858c431e2f567428b429 /shell.c
parent7e412e8a3492bc60604060f4f1b1d4ddeda7071f (diff)
shell: use skip_prefix() instead of starts_with()
Get rid of a magic number by using skip_prefix() instead of
starts_with().

Signed-off-by: René Scharfe <l.s.r@web.de>
Acked-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'shell.c')
-rw-r--r--shell.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/shell.c b/shell.c
index 40084a3013..54cca7439d 100644
--- a/shell.c
+++ b/shell.c
@@ -16,10 +16,10 @@ static int do_generic_cmd(const char *me, char *arg)
 	setup_path();
 	if (!arg || !(arg = sq_dequote(arg)) || *arg == '-')
 		die("bad argument");
-	if (!starts_with(me, "git-"))
+	if (!skip_prefix(me, "git-", &me))
 		die("bad command");
 
-	my_argv[0] = me + 4;
+	my_argv[0] = me;
 	my_argv[1] = arg;
 	my_argv[2] = NULL;