commit 3b9fb5855a164a4eddcd66f327336c34f8948869 from: Stefan Sperling date: Wed Mar 18 16:11:31 2020 UTC hide an fprintf inside if (chattygit) commit - 54d1a70f7c4cc24dd91d7f73a5fbd5aa6f6f97d9 commit + 3b9fb5855a164a4eddcd66f327336c34f8948869 blob - d6afe7dc9203acfae069ac340451fcf29b2e7377 blob + 312015a9368f1d111fb38a9cab8e8e1efef0949b --- libexec/got-fetch-pack/got-fetch-pack.c +++ libexec/got-fetch-pack/got-fetch-pack.c @@ -568,7 +568,8 @@ fetch_pack(int fd, int packfd, struct got_object_id *p goto done; } if (!req) { - fprintf(stderr, "up to date\n"); + if (chattygit) + fprintf(stderr, "up to date\n"); err = flushpkt(fd); if (err) goto done;