Browse Source

Oops we needed _r in there...

pull/1/head
Adam Ierymenko 13 years ago
parent
commit
fb7d9b1029
  1. 3
      node/SysEnv.cpp
  2. 3
      node/SysEnv.hpp

3
node/SysEnv.cpp

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

3
node/SysEnv.hpp

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

Loading…
Cancel
Save