HolmesProcessing / Holmes-Totem

Investigation Planner for fast running analysis with predictable execution time. For example, static analysis.
Apache License 2.0
29 stars 18 forks source link

Small naming fix #149

Closed cynexit closed 7 years ago

cynexit commented 7 years ago

The config option is named "validate_ssl_cert" which implies: true -> unvalid certs will be rejected false -> unvalid certs will be accepted But in the code we had setAcceptAnyCertificate(validate_ssl_cert) which needs to be setAcceptAnyCertificate(!validate_ssl_cert) to make sense.