Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoyee Cheung <joyeec9h3@gmail.com>2018-12-18 22:05:49 +0300
committerJoyee Cheung <joyeec9h3@gmail.com>2018-12-21 02:46:28 +0300
commite9703619e0698953ed71e8faf446b61c11ec89fc (patch)
tree93c1037edc98fa2b00987eeea825a78e8a9f4f90 /src/node_crypto.h
parent3438f4b2cab572b4e21ed68013f2b25adf911e8b (diff)
src: move GetOpenSSLVersion into node_metadata.cc
Instead of implementing it in node_crypto.cc even though the only place that needs it is the `Metadata::Versions` constructor. PR-URL: https://github.com/nodejs/node/pull/25115 Reviewed-By: Steven R Loomis <srloomis@us.ibm.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Minwoo Jung <minwoo@nodesource.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'src/node_crypto.h')
-rw-r--r--src/node_crypto.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/node_crypto.h b/src/node_crypto.h
index 0ee45cf9ea2..dd22c9eae4b 100644
--- a/src/node_crypto.h
+++ b/src/node_crypto.h
@@ -94,7 +94,6 @@ extern int VerifyCallback(int preverify_ok, X509_STORE_CTX* ctx);
extern void UseExtraCaCerts(const std::string& file);
void InitCryptoOnce();
-std::string GetOpenSSLVersion();
class SecureContext : public BaseObject {
public: