Skip to content

Commit 8c3a534

Browse files
rvkaEric Wong
authored andcommitted
git-svn: drop redundant blocking of SIGPIPE
Now that SIGPIPE is ignored there's no point blocking it. Signed-off-by: Roman Kagan <[email protected]> Acked-by: Eric Wong <[email protected]>
1 parent 6ade9bd commit 8c3a534

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

git-svn.perl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4070,7 +4070,7 @@ sub rev_map_set {
40704070
if ($update_ref) {
40714071
$sigmask = POSIX::SigSet->new();
40724072
my $signew = POSIX::SigSet->new(SIGINT, SIGHUP, SIGTERM,
4073-
SIGALRM, SIGPIPE, SIGUSR1, SIGUSR2);
4073+
SIGALRM, SIGUSR1, SIGUSR2);
40744074
sigprocmask(SIG_BLOCK, $signew, $sigmask) or
40754075
croak "Can't block signals: $!";
40764076
}

0 commit comments

Comments
 (0)