git-tar-tree: no more void pointer arithmetic
[git.git] / shell.c
diff --git a/shell.c b/shell.c
index 2c4789e..8c08cf0 100644 (file)
--- a/shell.c
+++ b/shell.c
@@ -1,19 +1,21 @@
 #include "cache.h"
 #include "quote.h"
+#include "exec_cmd.h"
 
 static int do_generic_cmd(const char *me, char *arg)
 {
        const char *my_argv[4];
 
-       arg = sq_dequote(arg);
-       if (!arg)
+       if (!arg || !(arg = sq_dequote(arg)))
                die("bad argument");
+       if (strncmp(me, "git-", 4))
+               die("bad command");
 
-       my_argv[0] = me;
+       my_argv[0] = me + 4;
        my_argv[1] = arg;
        my_argv[2] = NULL;
 
-       return execvp(me, (char**) my_argv);
+       return execv_git_cmd(my_argv);
 }
 
 static struct commands {