From 8c3a534c506bceb4981266e0c5db2918bb067da8 Mon Sep 17 00:00:00 2001 From: Roman Kagan Date: Mon, 23 Apr 2012 20:26:56 +0400 Subject: [PATCH] git-svn: drop redundant blocking of SIGPIPE Now that SIGPIPE is ignored there's no point blocking it. Signed-off-by: Roman Kagan Acked-by: Eric Wong --- git-svn.perl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-svn.perl b/git-svn.perl index aa14564e33..f8e9ef0ea6 100755 --- a/git-svn.perl +++ b/git-svn.perl @@ -4070,7 +4070,7 @@ sub rev_map_set { if ($update_ref) { $sigmask = POSIX::SigSet->new(); my $signew = POSIX::SigSet->new(SIGINT, SIGHUP, SIGTERM, - SIGALRM, SIGPIPE, SIGUSR1, SIGUSR2); + SIGALRM, SIGUSR1, SIGUSR2); sigprocmask(SIG_BLOCK, $signew, $sigmask) or croak "Can't block signals: $!"; } -- 2.11.4.GIT