On Samstag, 4. Juli 2009, Johannes Sixt wrote: > + if (status >= 0 || errno != ENOENT) > + exit(status & 0xff); With my replacement patch 1/7 this '& 0xff' is no longer necessary. Would you kindly squash this in? -- Hannes diff --git a/git.c b/git.c --- a/git.c +++ b/git.c @@ -418,7 +418,7 @@ static void execv_dashed_external(const char **argv) */ status = run_command_v_opt(argv, RUN_SILENT_EXEC_FAILURE); if (status >= 0 || errno != ENOENT) - exit(status & 0xff); + exit(status); argv[0] = tmp; -- 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