diff options
author | Byron Jones <bjones@mozilla.com> | 2012-08-16 19:32:56 +0200 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2012-08-16 19:32:56 +0200 |
commit | ae3016495ffde3e71d879109e35437dbeff0747f (patch) | |
tree | 4ae36549a09092460a1e00094fb64725c76dcf3f | |
parent | 04669c69cd4d6e1f2e279f04c4595ed55ec490e1 (diff) | |
download | bugzilla-ae3016495ffde3e71d879109e35437dbeff0747f.tar.gz bugzilla-ae3016495ffde3e71d879109e35437dbeff0747f.tar.xz |
fix interdiff breakage
-rw-r--r-- | Bugzilla/Arecibo.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Arecibo.pm b/Bugzilla/Arecibo.pm index 974594b72..760c60c59 100644 --- a/Bugzilla/Arecibo.pm +++ b/Bugzilla/Arecibo.pm @@ -206,7 +206,7 @@ sub arecibo_handle_error { ]; # fork then post - $SIG{CHLD} = 'IGNORE'; + local $SIG{CHLD} = 'IGNORE'; my $pid = fork(); if (defined($pid) && $pid == 0) { # detach |