builtin/verify-tag.c: ignore SIGPIPE in gpg-interface
[gitweb.git] / builtin / verify-tag.c
index 00663f6a3003976aaa33f08ae7309fc190ea4748..77f070a02a899459c09bd265aa2f7731698844b9 100644 (file)
@@ -95,9 +95,6 @@ int cmd_verify_tag(int argc, const char **argv, const char *prefix)
        if (verbose)
                flags |= GPG_VERIFY_VERBOSE;
 
-       /* sometimes the program was terminated because this signal
-        * was received in the process of writing the gpg input: */
-       signal(SIGPIPE, SIG_IGN);
        while (i < argc)
                if (verify_tag(argv[i++], flags))
                        had_error = 1;