Skip to content
This repository has been archived by the owner on Apr 22, 2023. It is now read-only.

Commit

Permalink
without this the server will not advertise support for client certs
Browse files Browse the repository at this point in the history
Closes GH-774.
  • Loading branch information
postwait authored and ry committed Mar 12, 2011
1 parent 12c02b3 commit 2a61e1c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/node_crypto.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 2a61e1c

Please sign in to comment.