summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJames Turnbull <james@lovedthanlost.net>2010-05-14 22:19:11 +1000
committerJames Turnbull <james@lovedthanlost.net>2010-05-14 22:19:11 +1000
commitd88b357b0ebac6db8b4cddd79b00b4eda9301757 (patch)
tree80b81dfe0df28e2c5fe8851298886c7747c9c3b9 /lib
parentdec84e5409a2f8e63805c045bebafab4973ba4d0 (diff)
downloadpuppet-d88b357b0ebac6db8b4cddd79b00b4eda9301757.tar.gz
puppet-d88b357b0ebac6db8b4cddd79b00b4eda9301757.tar.xz
puppet-d88b357b0ebac6db8b4cddd79b00b4eda9301757.zip
Fixes incorrect line in partial CRL fix
Diffstat (limited to 'lib')
-rw-r--r--lib/puppet/ssl/host.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/puppet/ssl/host.rb b/lib/puppet/ssl/host.rb
index ed39db235..7c8f8b05c 100644
--- a/lib/puppet/ssl/host.rb
+++ b/lib/puppet/ssl/host.rb
@@ -213,7 +213,6 @@ class Puppet::SSL::Host
# If there's a CRL, add it to our store.
if crl = Puppet::SSL::CertificateRevocationList.find("ca")
- @ssl_store.flags = OpenSSL::X509::V_FLAG_CRL_CHECK_ALL|OpenSSL::X509::V_FLAG_CRL_CHECK
@ssl_store.flags = OpenSSL::X509::V_FLAG_CRL_CHECK_ALL|OpenSSL::X509::V_FLAG_CRL_CHECK if Puppet.settings[:certificate_revocation]
@ssl_store.add_crl(crl.content)
end