Browse Source

without this the server will not advertise support for client certs

Closes GH-774.
v0.7.4-release
Theo Schlossnagle 14 years ago
committed by Ryan Dahl
parent
commit
2a61e1cd49
  1. 1
      src/node_crypto.cc

1
src/node_crypto.cc

@ -297,6 +297,7 @@ Handle<Value> SecureContext::AddCACert(const Arguments& args) {
if (!x509) return False();
X509_STORE_add_cert(sc->ca_store_, x509);
SSL_CTX_add_client_CA(sc->ctx_, x509);
X509_free(x509);

Loading…
Cancel
Save