From fb7d9b10292b2747ba1cb04ded4291cac49dfd6b Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Fri, 18 Oct 2013 15:00:55 -0400 Subject: [PATCH] Oops we needed _r in there... --- node/SysEnv.cpp | 3 ++- node/SysEnv.hpp | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/node/SysEnv.cpp b/node/SysEnv.cpp index 19b64296e..3fb2c8722 100644 --- a/node/SysEnv.cpp +++ b/node/SysEnv.cpp @@ -62,7 +62,8 @@ namespace ZeroTier { -SysEnv::SysEnv(const RuntimeEnvironment *renv) +SysEnv::SysEnv(const RuntimeEnvironment *renv) : + _r(renv) { } diff --git a/node/SysEnv.hpp b/node/SysEnv.hpp index c43e6adf9..21c25713e 100644 --- a/node/SysEnv.hpp +++ b/node/SysEnv.hpp @@ -49,6 +49,9 @@ public: * @return Fingerprint of currently running network environment */ uint64_t getNetworkConfigurationFingerprint(); + +private: + const RuntimeEnvironment *_r; }; } // namespace ZeroTier