about summary refs log tree commit diff
path: root/third_party/git/shell.c
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/git/shell.c')
-rw-r--r--third_party/git/shell.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/third_party/git/shell.c b/third_party/git/shell.c
index 40084a3013..54cca7439d 100644
--- a/third_party/git/shell.c
+++ b/third_party/git/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;