X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;ds=sidebyside;f=fetch-clone.c;h=c5cf4776fabb8f9f09028dd1f0cfaf1d55e1397c;hb=3899e7a329aabfc22eca9beb82599e1bb214b3d2;hp=81d13712962dfcf16c4f0f5a574b6950f6c3f154;hpb=e40e0135f24a140935c218af43d0bf8b7b07067b;p=git.git diff --git a/fetch-clone.c b/fetch-clone.c index 81d137129..c5cf4776f 100644 --- a/fetch-clone.c +++ b/fetch-clone.c @@ -44,9 +44,8 @@ static int finish_pack(const char *pack_tmp_name, const char *me) for (;;) { int status, code; - int retval = waitpid(pid, &status, 0); - if (retval < 0) { + if (waitpid(pid, &status, 0) < 0) { if (errno == EINTR) continue; error("waitpid failed (%s)", strerror(errno)); @@ -129,10 +128,12 @@ static pid_t setup_sideband(int sideband, const char *me, int fd[2], int xd[2]) len--; switch (buf[0] & 0xFF) { case 3: + safe_write(2, "remote: ", 8); safe_write(2, buf+1, len); - fprintf(stderr, "\n"); + safe_write(2, "\n", 1); exit(1); case 2: + safe_write(2, "remote: ", 8); safe_write(2, buf+1, len); continue; case 1: