1
0
mirror of https://github.com/moparisthebest/curl synced 2025-01-09 13:08:00 -05:00

To allow remote log inspection avoid redirecting messages to stderr.

Set 0600 file permissions on certificate pem files.
This commit is contained in:
Yang Tse 2009-11-27 12:00:53 +00:00
parent b1a35cd3ac
commit c713627412

View File

@ -87,7 +87,7 @@ foreach my $veropt (('-version', '-V')) {
my $cmd; my $cmd;
if(!$ver_major) { if(!$ver_major) {
print STDERR "no stunnel or unknown version\n"; print "no stunnel or unknown version\n";
} }
elsif($ver_major < 4) { elsif($ver_major < 4) {
# stunnel version less than 4.00 # stunnel version less than 4.00
@ -132,11 +132,15 @@ if($verbose) {
"; ";
} }
# Set file permissions on certificate pem file.
chmod(0600, $certfile) if(-f $certfile);
my $rc = system($cmd); my $rc = system($cmd);
$rc >>= 8; $rc >>= 8;
#if($rc) { #if($rc) {
# print STDERR "stunnel exited with $rc!\n"; # print "stunnel exited with $rc!\n";
#} #}
unlink $conffile; unlink $conffile;