Skip to content

Commit

Permalink
uneeded quoting
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillaume Rousse authored and Guillaume Rousse committed Jan 17, 2012
1 parent 1f5f160 commit 0d7c459
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/FusionInventory/Agent/HTTP/Protocol/https.pm
Expand Up @@ -10,10 +10,10 @@ sub import {
my ($class, %params) = @_;

# set default context
IO::Socket::SSL::set_ctx_defaults(ca_file => $params{'ca_cert_file'})
if $params{'ca_cert_file'};
IO::Socket::SSL::set_ctx_defaults(ca_path => $params{'ca_cert_dir'})
if $params{'ca_cert_dir'};
IO::Socket::SSL::set_ctx_defaults(ca_file => $params{ca_cert_file})
if $params{ca_cert_file};
IO::Socket::SSL::set_ctx_defaults(ca_path => $params{ca_cert_dir})
if $params{ca_cert_dir};
}

sub _extra_sock_opts {
Expand Down

0 comments on commit 0d7c459

Please sign in to comment.