Skip to content

Commit

Permalink
Simple TLS works. Repository should now be in working order.
Browse files Browse the repository at this point in the history
  • Loading branch information
jomono committed Apr 4, 2005
1 parent c4f9079 commit ef08e50
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion node/munin-node.in
Expand Up @@ -734,7 +734,8 @@ sub start_tls
Net::SSLeay::set_wfd($tls, fileno(STDOUT));

# Try to negotiate the tls connection
if (Net::SSLeay::accept($tls))
my $res;
if ($res = Net::SSLeay::accept($tls))
{
logger ("TLS Notice: TLS not enabled: " . &Net::SSLeay::print_errs());
}
Expand Down

0 comments on commit ef08e50

Please sign in to comment.