Browse Source

Oops we needed _r in there...

Adam Ierymenko 11 years ago
parent
commit
fb7d9b1029
2 changed files with 5 additions and 1 deletions
  1. 2 1
      node/SysEnv.cpp
  2. 3 0
      node/SysEnv.hpp

+ 2 - 1
node/SysEnv.cpp

@@ -62,7 +62,8 @@
 
 
 namespace ZeroTier {
 namespace ZeroTier {
 
 
-SysEnv::SysEnv(const RuntimeEnvironment *renv)
+SysEnv::SysEnv(const RuntimeEnvironment *renv) :
+	_r(renv)
 {
 {
 }
 }
 
 

+ 3 - 0
node/SysEnv.hpp

@@ -49,6 +49,9 @@ public:
 	 * @return Fingerprint of currently running network environment
 	 * @return Fingerprint of currently running network environment
 	 */
 	 */
 	uint64_t getNetworkConfigurationFingerprint();
 	uint64_t getNetworkConfigurationFingerprint();
+
+private:
+	const RuntimeEnvironment *_r;
 };
 };
 
 
 } // namespace ZeroTier
 } // namespace ZeroTier