summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShreyas Kalyan <shreyas.kalyan@10gen.com>2020-05-07 21:37:22 -0700
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-05-11 18:32:36 +0000
commit4860eea970500988225df7f2b369c9759440c42a (patch)
tree62557a9480bae2ddfc634735f6a058cf05e491e2
parentff441d6e3f30a5c6a779d416409a46d35d9c26b7 (diff)
downloadmongo-4860eea970500988225df7f2b369c9759440c42a.tar.gz
SERVER-47375 Complete TODO listed in SERVER-45798
-rw-r--r--src/mongo/util/net/ssl_manager_openssl.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mongo/util/net/ssl_manager_openssl.cpp b/src/mongo/util/net/ssl_manager_openssl.cpp
index 7d678f0d1c5..3d4274bc6e3 100644
--- a/src/mongo/util/net/ssl_manager_openssl.cpp
+++ b/src/mongo/util/net/ssl_manager_openssl.cpp
@@ -752,7 +752,6 @@ StatusWith<std::pair<OCSPCertIDSet, Date_t>> iterateResponse(OCSP_BASICRESP* bas
OCSP_CERTID_dup(const_cast<OCSP_CERTID*>(OCSP_SINGLERESP_get0_id(singleResp))));
int reason;
- // TODO SERVER-45798 the updated time will be implemented in the cache
ASN1_GENERALIZEDTIME *revtime, *thisupd, *nextupd;
auto status = OCSP_single_get0_status(singleResp, &reason, &revtime, &thisupd, &nextupd);