From f041f149c48900d0e3367c1c97f09a87731bcc44 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Fri, 4 Sep 2015 01:05:02 -0500 Subject: [PATCH] Fix up certificate expiry detection --- src/userconfigdlg.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/userconfigdlg.cpp b/src/userconfigdlg.cpp index d969c80..443391e 100644 --- a/src/userconfigdlg.cpp +++ b/src/userconfigdlg.cpp @@ -507,11 +507,11 @@ void UserConfigDialog::updatePKICertificateList() { if (cert) { TQString status = i18n("Invalid"); if (certificateData.first == PKICertificateStatus::Valid) { - if (TQDate::currentDate().daysTo(cert->getQDTNotAfter().date()) < 0) { + if (TQDateTime::currentDateTime(Qt::UTC) > cert->getQDTNotAfter()) { status = i18n("Expired"); } else { - if (cert->getQDTNotBefore().date().daysTo(TQDate::currentDate()) < 0) { + if (TQDateTime::currentDateTime(Qt::UTC) < cert->getQDTNotBefore()) { status = i18n("Future Valid"); } else {