Index: net/cert/multi_threaded_cert_verifier.cc |
diff --git a/net/cert/multi_threaded_cert_verifier.cc b/net/cert/multi_threaded_cert_verifier.cc |
index 35afe371c6775d20841a62d963e7354b8e4fc41f..9c5ca08e941c1e19f040891785f9ca8f5333d612 100644 |
--- a/net/cert/multi_threaded_cert_verifier.cc |
+++ b/net/cert/multi_threaded_cert_verifier.cc |
@@ -30,7 +30,7 @@ |
#include "net/cert/x509_certificate_net_log_param.h" |
#include "net/log/net_log.h" |
-#if defined(USE_NSS_VERIFIER) |
+#if defined(USE_NSS_CERTS) |
#include <private/pprthred.h> // PR_DetachThread |
#endif |
@@ -239,7 +239,7 @@ void DoVerifyOnWorkerThread(const scoped_refptr<CertVerifyProc>& verify_proc, |
*error = verify_proc->Verify(cert.get(), hostname, ocsp_response, flags, |
crl_set.get(), additional_trust_anchors, result); |
-#if defined(USE_NSS_VERIFIER) |
+#if defined(USE_NSS_CERTS) |
// Detach the thread from NSPR. |
// Calling NSS functions attaches the thread to NSPR, which stores |
// the NSPR thread ID in thread-specific data. |