From 2a61e1cd4979fcab4f2bf58a7b21f685c42f641e Mon Sep 17 00:00:00 2001 From: Theo Schlossnagle Date: Fri, 11 Mar 2011 17:11:46 -0500 Subject: [PATCH] without this the server will not advertise support for client certs Closes GH-774. --- src/node_crypto.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/node_crypto.cc b/src/node_crypto.cc index 22147806fd..57fbba71fc 100644 --- a/src/node_crypto.cc +++ b/src/node_crypto.cc @@ -297,6 +297,7 @@ Handle 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);