missing small substitution
Signed-off-by: Nicolas Pitre <nico@cam.org> Signed-off-by: Junio C Hamano <junkio@cox.net>maint
parent
c7740a943e
commit
5ca807842f
|
@ -46,7 +46,7 @@ static int get_pack(int xd[2], const char *me, int sideband, const char **argv)
|
||||||
side_pid = setup_sideband(sideband, me, fd, xd);
|
side_pid = setup_sideband(sideband, me, fd, xd);
|
||||||
pid = fork();
|
pid = fork();
|
||||||
if (pid < 0)
|
if (pid < 0)
|
||||||
die("%s: unable to fork off git-unpack-objects", me);
|
die("%s: unable to fork off %s", me, argv[0]);
|
||||||
if (!pid) {
|
if (!pid) {
|
||||||
dup2(fd[0], 0);
|
dup2(fd[0], 0);
|
||||||
close(fd[0]);
|
close(fd[0]);
|
||||||
|
|
Loading…
Reference in New Issue