Skip to content

Commit

Permalink
tls-openssl: fixed private variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
franku committed Aug 9, 2018
1 parent 0fefef5 commit 44356e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/lib/tls_openssl.cc
Expand Up @@ -114,7 +114,7 @@ bool TlsOpenSsl::init()
/*
* Set certificate revocation list.
*/
if (!d_->crlfile.empty()) {
if (!d_->crlfile_.empty()) {
X509_STORE *store;
X509_LOOKUP *lookup;

Expand All @@ -130,7 +130,7 @@ bool TlsOpenSsl::init()
return false;
}

if (!LoadNewCrlFile(lookup, (char *)d_->crlfile.c_str())) {
if (!LoadNewCrlFile(lookup, (char *)d_->crlfile_.c_str())) {
OpensslPostErrors(M_FATAL, _("Error loading revocation list file"));
return false;
}
Expand Down

0 comments on commit 44356e0

Please sign in to comment.