From: Ben Noordhuis Date: Thu, 29 Aug 2013 12:02:11 +0000 (+0200) Subject: crypto: remove misleading comment X-Git-Tag: v0.11.7~26 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=21911db392d8118372b92d0db1d92a031f481d61;p=platform%2Fupstream%2Fnodejs.git crypto: remove misleading comment --- 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;