On Samstag, 20. März 2010, Jonathan Nieder wrote: > - const char *argv_verify_tag[] = {"git-verify-tag", > + const char *argv_verify_tag[] = {"git", "verify-tag", > "-v", "SHA1_HEX", NULL}; > - argv_verify_tag[2] = sha1_to_hex(sha1); > + argv_verify_tag[3] = sha1_to_hex(sha1); > > if (run_command_v_opt(argv_verify_tag, 0)) > return error("could not verify the tag '%s'", name); This should rather be changed to run_command_v_opt(..., RUN_GIT_CMD). See other examples in the code. Oh, you remove this in a later patch. Then why have this patch at all? -- Hannes -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html