From 21911db392d8118372b92d0db1d92a031f481d61 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Thu, 29 Aug 2013 14:02:11 +0200 Subject: [PATCH] crypto: remove misleading comment --- src/node_crypto.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/node_crypto.h b/src/node_crypto.h index 2d2b00a..d9063a5 100644 --- a/src/node_crypto.h +++ b/src/node_crypto.h @@ -60,9 +60,8 @@ class SecureContext : ObjectWrap { public: static void Initialize(v8::Handle target); - SSL_CTX *ctx_; - // TODO(indutny): ca_store_ should probably be removed, it's not used anywhere - X509_STORE *ca_store_; + SSL_CTX* ctx_; + X509_STORE* ca_store_; static const int kMaxSessionSize = 10 * 1024; -- 2.7.4