Revert "Avoid calling signal(SIGPIPE, ..) for MinGW builds."

This reverts commit 56be985fe9.

SIGPIPE is defined in the compat layer, so this ifdef is no
longer needed.
This commit is contained in:
Steffen Prohaska
2008-07-02 16:27:40 +02:00
parent 17e3d3f605
commit 5278ad45e3

View File

@@ -100,11 +100,9 @@ int cmd_verify_tag(int argc, const char **argv, const char *prefix)
i++;
}
#ifndef __MINGW32__
/* sometimes the program was terminated because this signal
* was received in the process of writing the gpg input: */
signal(SIGPIPE, SIG_IGN);
#endif
while (i < argc)
if (verify_tag(argv[i++], verbose))
had_error = 1;