aboutsummaryrefslogtreecommitdiff
path: root/git-svn.perl
diff options
context:
space:
mode:
authorRoman Kagan <rkagan@mail.ru>2012-04-23 20:26:56 +0400
committerEric Wong <normalperson@yhbt.net>2012-04-24 09:42:08 +0000
commit8c3a534c506bceb4981266e0c5db2918bb067da8 (patch)
treed1b49874e4c000a9232760ad8d0156e77b6462fd /git-svn.perl
parent6ade9bdadaf61565ee4e2ab47f66baaf41a20ecf (diff)
downloadgit-8c3a534c506bceb4981266e0c5db2918bb067da8.tar.gz
git-8c3a534c506bceb4981266e0c5db2918bb067da8.tar.xz
git-svn: drop redundant blocking of SIGPIPE
Now that SIGPIPE is ignored there's no point blocking it. Signed-off-by: Roman Kagan <rkagan@mail.ru> Acked-by: Eric Wong <normalperson@yhbt.net>
Diffstat (limited to 'git-svn.perl')
-rwxr-xr-xgit-svn.perl2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-svn.perl b/git-svn.perl
index aa14564e3..f8e9ef0ea 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: $!";
}