On Samstag, 10. Januar 2009, Steffen Prohaska wrote: > diff --git a/builtin-receive-pack.c b/builtin-receive-pack.c > index db67c31..bbedcfe 100644 > --- a/builtin-receive-pack.c > +++ b/builtin-receive-pack.c > @@ -579,6 +579,9 @@ int cmd_receive_pack(int argc, const char **argv, const > char *prefix) int i; > char *dir = NULL; > > + if (argv[0] && *argv[0]) > + git_extract_argv0_path(argv[0]); > + This is not necessary because receive-pack is meanwhile a builtin. > diff --git a/upload-pack.c b/upload-pack.c > index e5adbc0..c469a60 100644 > --- a/upload-pack.c > +++ b/upload-pack.c > @@ -616,6 +616,9 @@ int main(int argc, char **argv) > int i; > int strict = 0; > > + if (argv[0] && *argv[0]) > + git_extract_argv0_path(argv[0]); > + > for (i = 1; i < argc; i++) { > char *arg = argv[i]; This hunk should be merged into 4/6. -- 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