aboutsummaryrefslogtreecommitdiffstats
path: root/src/libstrongswan/crypto/ca.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstrongswan/crypto/ca.c')
-rw-r--r--src/libstrongswan/crypto/ca.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libstrongswan/crypto/ca.c b/src/libstrongswan/crypto/ca.c
index 4ec8c8430..9633c77be 100644
--- a/src/libstrongswan/crypto/ca.c
+++ b/src/libstrongswan/crypto/ca.c
@@ -191,12 +191,12 @@ static void add_crl(private_ca_info_t *this, crl_t *crl)
{
this->crl->destroy(this->crl);
this->crl = crl;
- DBG1(" thisUpdate is newer - existing crl replaced");
+ DBG1(" this crl is newer - existing crl replaced");
}
else
{
crl->destroy(crl);
- DBG1(" thisUpdate is not newer - existing crl retained");
+ DBG1(" this crl is older - existing crl retained");
}
}
else
@@ -500,12 +500,12 @@ static cert_status_t verify_by_crl(private_ca_info_t* this, certinfo_t *certinfo
{
this->crl->destroy(this->crl);
this->crl = crl;
- DBG1(" thisUpdate is newer - existing crl replaced");
+ DBG1("this crl is newer - existing crl replaced");
}
else
{
crl->destroy(crl);
- DBG1("thisUpdate is not newer - existing crl retained");
+ DBG1("this crl is older - existing crl retained");
continue;
}
if (crl->is_valid(crl))