Skip to content

Commit

Permalink
Item12180: Fix some noise in the logs
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.foswiki.org/trunk@16163 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
  • Loading branch information
TimotheLitt authored and TimotheLitt committed Dec 6, 2012
1 parent 2dcaead commit a511d15
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions core/lib/Foswiki/Configure/Checker.pm
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ sub parseOptions {
next;
}
( my $list, $optionString ) = split( /\s+/, $optionString, 2 );
$optionString = '' unless ( defined $optionString );
push @options, $name => [ split( ',', $list ) ];
}
push @optionList, {@options};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ sub installCert {
&& $data =~ /^-----BEGIN CERTIFICATE-----/m
&& $data =~ /^-----END CERTIFICATE-----/m );

my $output = `openssl x509 -text 2>&1 <<---EOF---
my $output = `openssl x509 -text 2>&1 <<~~~EOF---
$data
---EOF---
~~~EOF---
`;
if ($?) {
return $this->ERROR("Operation failed");
Expand Down

0 comments on commit a511d15

Please sign in to comment.