From 90244813fe8110fc91f3746ebd93880e1c911cf1 Mon Sep 17 00:00:00 2001 From: David Lawrence Date: Tue, 27 Jan 2015 12:27:50 +0800 Subject: Bug 1124432: Backport upstream bug 1079065 to bmo/4.2 to fix improper use of open() calls --- testserver.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'testserver.pl') diff --git a/testserver.pl b/testserver.pl index 3142685bc..ffe4b1ad5 100755 --- a/testserver.pl +++ b/testserver.pl @@ -44,7 +44,7 @@ my @pscmds = ('ps -eo comm,gid', 'ps -acxo command,gid', 'ps -acxo command,rgid' my $sgid = 0; if (!ON_WINDOWS) { foreach my $pscmd (@pscmds) { - open PH, "$pscmd 2>/dev/null |"; + open PH, '-|', "$pscmd 2>/dev/null"; while (my $line = ) { if ($line =~ /^(?:\S*\/)?(?:httpd|apache)2?\s+(\d+)$/) { $sgid = $1 if $1 > $sgid; @@ -271,7 +271,7 @@ sub check_image { sub create_file { my ($filename, $content) = @_; - open(FH, ">$filename") + open(FH, ">", $filename) or die "Failed to create $filename: $!\n"; binmode FH; print FH $content; @@ -280,7 +280,7 @@ sub create_file { sub read_file { my ($filename) = @_; - open(FH, $filename) + open(FH, "<", $filename) or die "Failed to open $filename: $!\n"; binmode FH; my $content = ; -- cgit v1.2.3-24-g4f1b