summaryrefslogtreecommitdiffstats
path: root/remoting/host/token_validator_base.cc
diff options
context:
space:
mode:
Diffstat (limited to 'remoting/host/token_validator_base.cc')
-rw-r--r--remoting/host/token_validator_base.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/remoting/host/token_validator_base.cc b/remoting/host/token_validator_base.cc
index 8a5c2c3..452a182 100644
--- a/remoting/host/token_validator_base.cc
+++ b/remoting/host/token_validator_base.cc
@@ -120,6 +120,9 @@ void TokenValidatorBase::OnCertificateRequested(
client_cert_store = new net::ClientCertStoreWin();
#elif defined(OS_MACOSX)
client_cert_store = new net::ClientCertStoreMac();
+#elif defined(USE_OPENSSL)
+ // OpenSSL does not use the ClientCertStore infrastructure.
+ client_cert_store = NULL;
#else
#error Unknown platform.
#endif