From 5278ad45e345e4e7f0418b4733f54823b7199801 Mon Sep 17 00:00:00 2001 From: Steffen Prohaska Date: Wed, 2 Jul 2008 16:27:40 +0200 Subject: [PATCH] Revert "Avoid calling signal(SIGPIPE, ..) for MinGW builds." This reverts commit 56be985fe902a4af8c7f0bbe4541ef783ead827f. SIGPIPE is defined in the compat layer, so this ifdef is no longer needed. --- builtin-verify-tag.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/builtin-verify-tag.c b/builtin-verify-tag.c index 540e3b9b75..92eaa89a45 100644 --- a/builtin-verify-tag.c +++ b/builtin-verify-tag.c @@ -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;