From d4e96b2a5e46a09fc1defa8408c8d09edfa9106f Mon Sep 17 00:00:00 2001 From: Ted Date: Wed, 24 Aug 2011 10:37:16 -0500 Subject: [PATCH] Replaced underscore in ca_dir. --- src/authm_mad/remotes/x509/x509_auth.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/authm_mad/remotes/x509/x509_auth.rb b/src/authm_mad/remotes/x509/x509_auth.rb index a8b8af2b05..7a4fe3e664 100644 --- a/src/authm_mad/remotes/x509/x509_auth.rb +++ b/src/authm_mad/remotes/x509/x509_auth.rb @@ -30,13 +30,13 @@ class X509Auth # cert chain array in colon-separated pem format # @option options [String] :key_pem # key in pem format - # @option options [String] :cadir + # @option options [String] :ca_dir # directory of trusted CA's. Needed for auth method, not for login. def initialize(options={}) @options={ :certs_pem => nil, :key_pem => nil, - :cadir => nil + :ca_dir => nil }.merge!(options) @cert_chain = certs_pem.collect do |cert_pem|