crypto: remove misleading comment
authorBen Noordhuis <info@bnoordhuis.nl>
Thu, 29 Aug 2013 12:02:11 +0000 (14:02 +0200)
committerBen Noordhuis <info@bnoordhuis.nl>
Thu, 29 Aug 2013 12:02:11 +0000 (14:02 +0200)
src/node_crypto.h

index 2d2b00a..d9063a5 100644 (file)
@@ -60,9 +60,8 @@ class SecureContext : ObjectWrap {
  public:
   static void Initialize(v8::Handle<v8::Object> 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;