X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=builtin-verify-tag.c;h=f3ef11fa2d582682b428d6e165da65f05e2d7511;hb=53a5b443b4b3d5beb102615f402e0e4da5ba9179;hp=cc4c55d7ee35ceeaf8c4a857d5dad857a7eb2664;hpb=43f36901c5e4d54de2c3b7c5d62af59382df717c;p=git.git diff --git a/builtin-verify-tag.c b/builtin-verify-tag.c index cc4c55d7e..f3ef11fa2 100644 --- a/builtin-verify-tag.c +++ b/builtin-verify-tag.c @@ -45,14 +45,12 @@ static int run_gpg_verify(const char *buf, unsigned long size, int verbose) memset(&gpg, 0, sizeof(gpg)); gpg.argv = args_gpg; gpg.in = -1; - gpg.out = 1; args_gpg[2] = path; if (start_command(&gpg)) return error("could not run gpg."); write_in_full(gpg.in, buf, len); close(gpg.in); - gpg.close_in = 0; ret = finish_command(&gpg); unlink(path);