Index: remoting/host/token_validator_base.cc |
diff --git a/remoting/host/token_validator_base.cc b/remoting/host/token_validator_base.cc |
index 8a5c2c365fb00dc0217b48c7c29a36be15460e6c..452a182c8c242e38ce33ff88274a4be1e4fba508 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 |