Skip to content

Commit

Permalink
Refs #27002 - precedence matters
Browse files Browse the repository at this point in the history
  • Loading branch information
danielrife committed Oct 13, 2011
1 parent bff41ac commit 3fc2046
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/right_http_connection.rb
Expand Up @@ -322,7 +322,8 @@ def start(request_params)
}
@http.use_ssl = true

if ca_file = get_param(:ca_file) && File.exists?(ca_file)
ca_file = get_param(:ca_file)
if ca_file && File.exists?(ca_file)
# Documentation for 'http.rb':
# : verify_mode, verify_mode=((|mode|))
# Sets the flags for server the certification verification at
Expand Down

0 comments on commit 3fc2046

Please sign in to comment.