Changeset 865 for trunk/src/network/ssl/qsslcertificate.cpp
- Timestamp:
- May 16, 2011, 4:09:34 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/vendor/nokia/qt/4.7.3 (added) merged: 864 /branches/vendor/nokia/qt/current merged: 863 /branches/vendor/nokia/qt/4.7.2 removed
- Property svn:mergeinfo changed
-
trunk/src/network/ssl/qsslcertificate.cpp
r846 r865 220 220 false. 221 221 222 Note: Currently, this function onlychecks that the current222 Note: Currently, this function checks that the current 223 223 data-time is within the date-time range during which the 224 certificate is considered valid . No other checks are225 c urrently performed.224 certificate is considered valide 225 c. 226 226 227 227 \sa isNull() … … 230 230 { 231 231 const QDateTime currentTime = QDateTime::currentDateTime(); 232 return currentTime >= d->notValidBefore && currentTime <= d->notValidAfter; 232 return currentTime >= d->notValidBefore && 233 currentTime <= d->notValidAfter && 234 ! QSslCertificatePrivate::isBlacklisted(*this); 233 235 } 234 236 … … 799 801 } 800 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 801 827 #ifndef QT_NO_DEBUG_STREAM 802 828 QDebug operator<<(QDebug debug, const QSslCertificate &certificate)
Note:
See TracChangeset
for help on using the changeset viewer.