X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=builtin-verify-tag.c;h=f3ef11fa2d582682b428d6e165da65f05e2d7511;hb=660b9c3a4e24ce9a2628f2ec88902e2384d1aade;hp=cc4c55d7ee35ceeaf8c4a857d5dad857a7eb2664;hpb=9b433e44964202befd175f1f28687067b8bd058f;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);